Sublime - 在新文件上将文本大小设置为2?

时间:2013-08-23 11:40:52

标签: sublimetext

我已经在偏好设置 - >中进行了以下设置设置 - 用户

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

但是,打开新文件并点击标签仍会缩进4个空格。如何在新文件上创建Sublime缩进2个空格?

1 个答案:

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

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