在OS X上configurationSublime Text以在标题栏中显示完整的目录path

在Linux上,Sublime Text默认显示标题栏中当前打开的文件的完整path,但在OS X上,它只显示文件的名称。

如何在OS X上configurationSublime以显示标题栏中当前打开的文件的完整path?

使用崇高文本3,所有必要的是编辑您的崇高用户首选项 ( Preferences -> Settings - User ),包括:

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

这将覆盖此选项的OS X特定默认值,该值为false

崇高的文本2/3应该是一样的(在OSX优胜美地上testing)

  1. 在崇高期间,进入“Sublime Text 2/3”菜单并向下移动到“Preferences – >”,然后进入“Settings – User”,这将在Sublime中打开您的用户设置

  2. 如果你从来没有添加任何用户设置,它应该只包含一些评论。 如果是这样,你可以粘贴在以下内容:

一个设置

 // Settings in here override those in "Default/Preferences.sublime-settings", and // are overridden in turn by file type specific settings. { "show_full_path": true } 

两个设置
(每行一个设置,并用a隔开)

 // Settings in here override those in "Default/Preferences.sublime-settings", and // are overridden in turn by file type specific settings. { "show_full_path": true, "save_on_focus_lost": true } 
  1. 现在保存这个设置文件。

  2. 现在,您应该能够在标题栏中看到完整的path。

(注意:对于我来说,我不需要重新启动Sublime在标题栏中看到path,但我想我不得不在我使用Windows版本的程序时)

在Sublime的全屏模式/分心免费模式中,您需要将指针移动到屏幕顶部以查看标题栏。

我通常只运行Sublime,手动调整窗口的大小,使其始终可以看到标题栏。

只是为了澄清,当你阅读:

 //Show the full path to files in the title bar. // On OS X, this value is overridden in the platform specific settings, so // you'll need to place this line in your user settings to override it." 

它试图告诉你修改崇高文本用户设置而不是任何OSX系统设置。

在Mac OS X的Sublime Text 3中:

1)将"show_full_path": true添加到您的Sublime Text / Preferences / Settings - User文件中。 添加这一行,即使它已经在默认的首选项中显示为true 。 如果将其包含在其他首选项中,则用逗号( , )终止该行。 保存您的更改。

2)退出并重新启动崇高。

与其他用户的首选项不同,除非重新启动应用程序,否则不会看到此更改。