我已经在偏好设置 - >中进行了以下设置设置 - 用户
{
"translate_tabs_to_spaces": true,
"tabSize":2,
"detect_indentation": false
}
但是,打开新文件并点击标签仍会缩进4个空格。如何在新文件上创建Sublime缩进2个空格?
答案 0 :(得分:0)
您似乎没有正确拼写标签尺寸:
// Settings in here override those in "Default/Preferences.sublime-settings",
// and are overridden in turn by file type specific settings.
{
"tab_size": 2,
"translate_tabs_to_spaces": true
}
我在Sublime上试过这个,它就像一个魅力。