show_full_path在Mac中不起作用

时间:2014-02-10 11:59:51

标签: macos sublimetext2

我注意到有一个功能可以显示标题栏中文件的完整路径。

我在设置中找到了它:

// 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.
"show_full_path": true,

然而,我仍然看不到完整的路径。我认为这与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有关。

但我该怎么办?

谢谢,

1 个答案:

答案 0 :(得分:1)

您需要将设置放在用户设置中。点击Sublime Text 2 -> Preferences -> Settings-User。在文件的顶部,在左大括号{之后的行上,输入以下内容:

"show_full_path": true,

并保存文件。

如果您打开Settings-User文件且该文件完全为空,请添加以下内容:

{
    "show_full_path": true
}

保存文件,您应该全部设置。