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

6

38

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?

Wailoo answered 6/8, 2012 at 17:55 Comment(2)
Answer, for those arriving here from google.: Go to the menu "View -> Side Bar" and there is an entry for hiding and unhiding the sidebar. In my current key bindings it is Ctrl-K Ctrl-B which has to be typed one after the other. Currently I could not add this as an answer because the question is "closed".Cooee
On Ubuntu is ctrl+k+b GL SourceSchoolbook
L
40

By default:

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

You can reach this settings at main menu: Preferences -> Key Bindings - Default.
and you can override as you like, at main menu: Preferences -> Key Bindings - User.

Lettielettish answered 26/6, 2015 at 18:12 Comment(1)
please advise to always show sidebar, not autohide. thanksOutpost
O
17

By default if you are using mac os:

{ "keys": ["command+k", "command+b"], "command": "toggle_side_bar" }
Osher answered 6/9, 2015 at 16:12 Comment(0)
B
12

In Command Panel (Ctrl+Shift+P) type (or find) View: Toggle Side Bar and hit Enter

Belize answered 15/7, 2016 at 4:50 Comment(0)
B
4

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.

Biannual answered 13/1, 2019 at 20:6 Comment(0)
L
3

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

Loggerhead answered 9/4, 2020 at 13:7 Comment(1)
please advise to always show sidebar, not autohide. thanksOutpost
R
2

View / Side Bar / Show Sidebar ⌘K, ⌘B

Ropable answered 9/3, 2017 at 21:56 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.