How can I hide and unhide the project folder tree in sublime-text

Viewed 28186

I can no longer see the project folder navigation tree on the left side of my interface.

I suspect I have hit some shortcut by accident that made it go away.

What are the shortuts to make the project folder navigation tree hide and unhide in sublime text?

6 Answers

I had something like that in my keymap.

{"keys": ["super+k", "super+b"], "command": "toggle_side_bar"},

In View -> Side Bar -> Show/Hide sidebar ⌘K, ⌘B. Which means "Press and hold cmd then click buttons "b" and "k", then release cmd".

I couldn't get that... I thought that there were two ways to toggle project tree (cmd+B OR cmd+K) but it's basically one command.

To Toggle (hide or show) the side bar
press ctrl+K,ctrl+B (ctrl+K,B)

Related