Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Tree tab wtf? #24

Open
tj opened this issue Jun 13, 2017 · 3 comments
Open

Tree tab wtf? #24

tj opened this issue Jun 13, 2017 · 3 comments
Labels

Comments

@tj
Copy link
Member

tj commented Jun 13, 2017

not sure where this came from, but it's bumping the tree down

screen shot 2017-06-12 at 7 55 37 pm

@tj
Copy link
Member Author

tj commented Jun 13, 2017

hmm the active tab is no longer black either.

@tj tj added the bug label Jun 13, 2017
@tj
Copy link
Member Author

tj commented Jun 13, 2017

seems like a state issue in Atom, it thinks the active pain is not active

@luca-aurelia
Copy link

luca-aurelia commented Apr 19, 2018

Yeah, here's the relevant Atom issue for the active pane problem:
atom/atom#14283

One work-around is to open and close a pane when Atom starts:

openNewPane = ->
  atom.workspace.open(null, { split: "right" })
closeActivePane = ->
  atom.workspace.getActiveTextEditor().destroy()
defer = (fn) ->
  setTimeout fn, 1
openThenClose = ->
  openNewPane().then ->
    defer closeActivePane

defer openThenClose

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants