0

我已经在Preferences -> Settings - User中有以下设置

{
  "translate_tabs_to_spaces": true,
  "tabSize":2,
  "detect_indentation": false
}

但是打开一个新文件并点击制表符仍然缩进 4 个空格。如何让 Sublime 在新文件上缩进 2 个空格?

4

1 回答 1

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 上试过这个,它就像一个魅力。

见这里:http ://www.sublimetext.com/docs/2/indentation.html

于 2013-08-23T11:48:10.460 回答