我在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
}
有没有办法将这些用作所有文件类型的全局设置,所以每次创建不同的文件类型时,我都不必复制此代码段?
答案 0 :(得分:0)
设置应用的层次结构如下(取自Official Documentation上的Settings)
<platform>
)。sublime-settings <Project Settings>
<syntax>
/ <syntax>
。升华的设置<syntax>
。升华的设置<Buffer Specific Settings>
您想要全局使用的任何设置都应该采用常规用户设置,即菜单中的Preferences > Settings
;如果您希望某些设置仅应用于特定文件类型,则只需使用Preferences > Settings - Syntax Specific
。