如何设置 Sublime Text 3 的默认缩进设置?

如何设置 Sublime Text 3 的默认缩进设置?

我正在使用 Sublime Text 3,我已根据文档

在此处输入图片描述

但是,当我重新启动应用程序时,默认的选项卡大小仍然是 4 个空格。我该怎么办?

在此处输入图片描述

这是设置

{
"translateTabsToSpaces": true,
"tabSize": 2,
"detect_indentation":true, // I've also tried set this item as false, neither works.
}

答案1

根据当前文档https://www.sublimetext.com/docs/3/indentation.html

{
    "tab_size": 2
}

然后保存 User/Preferences.sublime-settings 文件,更改将立即生效。

或者更改“视图”菜单下的“缩进”设置。

相关内容