Israel Omar Asked: 2020-04-22 14:33:43 +0800 CST 2020-04-22 14:33:43 +0800 CST 2020-04-22 14:33:43 +0800 CST 如何在 sublime text 3 中缩进 2 个空格? 772 你好,我想要 sublime text 3 在做制表符时让我在缩进中的 4 个空格,它们只有两个空格。我该怎么做? sublimetext3 2 Answers Voted Best Answer Shaz 2020-04-22T14:34:54+08:002020-04-22T14:34:54+08:00 在菜单中,您转到 View > Indentation > Tab width: 2 。 learnercys 2020-04-22T15:22:26+08:002020-04-22T15:22:26+08:00 另一种方法是使用EditorConfig独立于编辑器。 为了能够使用它,你只需要.editorconfig在你的项目中创建一个,添加你想要的选项,最后安装插件来识别配置。示例.editorconfig: style_guide_version = 1.1.0 # editorconfig.org root = true indent_style = space indent_size = 2 end_of_line = lf charset = utf-8 trim_trailing_whitespace = true insert_final_newline = true max_line_length = 120
在菜单中,您转到 View > Indentation > Tab width: 2 。
另一种方法是使用EditorConfig独立于编辑器。
为了能够使用它,你只需要
.editorconfig
在你的项目中创建一个,添加你想要的选项,最后安装插件来识别配置。示例.editorconfig
: