Sublime Text 2: view working directory / file directory

I think it would be nice if the directory appears in the bottom line of the window status. I can’t find any information about the file from the menu, so if I have the same file with the same name that opens from two different directories, I don’t need to specify which one I’m editing now!

+3
source share
2 answers

I found that hovering over a tab in this editor will show its path. This is quite enough for me (although it is always visible below, it would still be great!).

I created a plugin to display the path of the current open view in the status bar. This helps when the window is in full screen mode, when you don't see the file path in the title bar (it never shows that for OS X anyway).

+1
source

You can make sublime text to show the full path to the current file in the title bar by changing some settings in the settings.

If you are using OS X, add

"show_full_path": true,

to your user settings and check their default settings.

On another system, this is the default, I think, but you can always make sure. Hope this helps.

+3
source

All Articles