When I am using rubymine, I can open a panel with ctrl+shift+n and enter something like "users/" and it will show me the users folder in the tree view on the left, how can I do the same in Atom editor? I can open files with ctrl + p, but I can't find anything about going to the folder.
16
votes
5 Answers
24
votes
It looks like this functionality is currently not available in Atom. Some related information:
- You can reveal the currently edited file in the Tree View using the menu entry
Packages > Tree View > Reveal Active Fileor using the assigned keyboard shortcut (on OS X Cmd+Shift+\) - There's a Tree View Filter package, which seems to be similar to what you're looking for.
- The Tree View Search Bar package allows to search the tree view's content.
- There's an open issue on the Tree View package to add search capabilities, but it has not been implemented yet.
2
votes
Try Shortcuts : ctrl \ or cmd \ to open/close the tree view
if still not opening then check your .atom/config.cson
and check disabledPackages and remove tree-view from it.
and restart your atom again.
if still not open then install it again
https://atom.io/packages/tree-view
NOTE : sometimes it happens if you uninstalled Nuclide package
1
votes