Sublime Text 3:4空格,标签不仅适用于javascript文件

时间:2016-09-24 12:55:52

标签: javascript sublimetext3 indentation

在Sublime Text 3中,我在“用户首选项”中有4个制表符空格。这是设置文件的一部分:

{
    ...

    // The number of spaces a tab is considered equal to
    "tab_size": 4,

    // Set to true to insert spaces when tab is pressed
    "translate_tabs_to_spaces": false,

    // If translate_tabs_to_spaces is true, use_tab_stops will make tab and
    // backspace insert/delete up to the next tabstop
    "use_tab_stops": true,

    // Set to false to disable detection of tabs vs. spaces on load
    "detect_indentation": true,

    // Calculates indentation automatically when pressing enter
    "auto_indent": true,

    // Makes auto indent a little smarter, e.g., by indenting the next line
    // after an if statement in C. Requires auto_indent to be enabled.
    "smart_indent": true,

    // Adds whitespace up to the first open bracket when indenting. Requires
    // auto_indent to be enabled.
    "indent_to_bracket": false,

    // Trims white space added by auto_indent when moving the caret off the
    // line.
    "trim_automatic_white_space": true,

    ...
}

除Javascript文件外,它的效果很好,其中标签空间为2.我不明白为什么。

任何帮助?

我尝试创建特定于Javascript的设置文件,但它也不起作用。

1 个答案:

答案 0 :(得分:1)

我遇到了同样的问题。如果您打开一个现有文件,该文件的制表符设置为 2 个空格(从 GitHub 加载的文件大多有这个),就会出现问题。另一方面,如果您创建一个新的 .js 文件,则选项卡会按照指示设置为 4。

正如@OdatNurd 所提到的,您将“detect_indentation”设置为 True。这会检测加载文件的缩进。