我可以在Sublime上将语法特定设置作为全局设置吗?

时间:2018-03-23 11:55:19

标签: sublimetext3

我在Sublime Text 3上为php文件使用这些设置(从Preferences menu > Settings - syntax specific添加)

// These settings override both User and Default settings for the PHP syntax
{
    "highlight_line": true,
    "line_padding_bottom": 15,
    "line_padding_top": 15,
    "bold_folder_labels": true,
    "tab_size": 4,
    "translate_tabs_to_spaces": false
}

有没有办法将这些用作所有文件类型的全局设置,所以每次创建不同的文件类型时,我都不必复制此代码段?

1 个答案:

答案 0 :(得分:0)

设置应用的层次结构如下(取自Official Documentation上的Settings

  1. 软件包/默认/ Preferences.sublime-设置
  2. 包/默认/首选项(<platform>)。sublime-settings
  3. 软件包/用户/ Preferences.sublime-设置
  4. <Project Settings>
  5. 软件包/ <syntax> / <syntax>。升华的设置
  6. 软件包/用户/ <syntax>。升华的设置
  7. <Buffer Specific Settings>
  8. 您想要全局使用的任何设置都应该采用常规用户设置,即菜单中的Preferences > Settings;如果您希望某些设置仅应用于特定文件类型,则只需使用Preferences > Settings - Syntax Specific