Configure Sublime Text on OS X to show full directory path in title bar

Katarzyna picture Katarzyna · Jan 21, 2014 · Viewed 27.6k times · Source

On Linux, Sublime Text shows the full path of my currently open file in the title bar by default, but on OS X, it only shows the name of the file.

How can I configure Sublime on OS X to show the full path to the currently open file in the title bar?

Answer

Myk Willis picture Myk Willis · Sep 20, 2014

With Sublime Text 3, all that's necessary is to edit your Sublime user preferences (Preferences -> Settings - User) to include:

{
  // ... other settings
  "show_full_path": true
}

Then, restart sublime so the new settings are loaded.

This will override the OS X-specific default value for this option, which is false.