Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

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?

like image 500
Dave Gault Avatar asked Aug 06 '12 17:08

Dave Gault


People also ask

How do I display file tree in Sublime Text?

Go to File -> Open Folder... and select the highest directory you want to be able to navigate. Also, 'View -> Sidebar -> Show Sidebar' if it still doesn't show.

How do I hide the side bar in Sublime Text 3?

So you'd press Super+K, release the keys, then press Super+B to hide the sidebar.

How do I show hidden files in Sublime Text?

Global SettingsClick on Preferences -> Settings . By default, all hidden directory/file (starts with . )

How do I display folders in Sublime Text 4?

Then on sublime text go to view>sidebar>show sidebar. Finally, 3 tabs away from view is a project tab. Click on project> add folder to project.. and then choose the folder you downloaded/unziped to your computer.


1 Answers

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.

like image 50
cn007b Avatar answered Oct 06 '22 21:10

cn007b