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

sublimetext

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?

Best Answer

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.