Sublime Text - show open files on the left

Sublimetext

Sublimetext Problem Overview


Is there a way to show the files that are open in SublimeText on the left of the screen, in a simple list?

I'd simply like the open files to appear on the left in a clickable way like this

file1.txt
file2.css
file3.htm
etc

is that possible?

Sublimetext Solutions


Solution 1 - Sublimetext

Go to the "View" menu and choose "Side Bar", then "Show Open Files"

enter image description here

Solution 2 - Sublimetext

Right click on open file in editor... Click on Reveal in Side Bar option, it will sync the open file with side bar

Solution 3 - Sublimetext

Ctrl+K+B will reveal the 'Side bar', with open file information. It is really worth using projects, they are really simple and provides for easy folder/project/file switching. I also strongly reccomend going to preferences>Key Bindings - Default through the menus, and looking at all the functionality and keyboard shortcuts. Also 'preferences>Settings - Defualt`, shows you all of the configurable options (there are a lot). These are basically 'must dos' for getting full goodness out of Sublime.

Solution 4 - Sublimetext

If you want to do it only using keyboard, Command + Shift + P and select View: Toggle Open Files in Side Bar

enter image description here

Solution 5 - Sublimetext

Here's the key binding to run this shortcut using the keyboard:

[    { "keys": ["super+shift+j"], "command": "reveal_in_side_bar" },
]

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
Questionuser410932View Question on Stackoverflow
Solution 1 - SublimetextNathan ManousosView Answer on Stackoverflow
Solution 2 - Sublimetextvikram jeet singhView Answer on Stackoverflow
Solution 3 - SublimetextfraxelView Answer on Stackoverflow
Solution 4 - SublimetextJoeView Answer on Stackoverflow
Solution 5 - SublimetextRoger ObaView Answer on Stackoverflow