刚刚开始用 Sublime Text 3, 如何设置缩进呢?比如 Ruby 缩进为 2,C 缩进为 3.
http://feliving.github.io/Sublime-Text-3-Documentation/indentation.html 单独语法设置,然后每次就正常的 cmd + shift + p 选语法就好~
// The number of spaces a tab is considered equal to "tab_size": 2, // Set to true to insert spaces when tab is pressed "translate_tabs_to_spaces": true, 这个是 2 的,3 你试试行不行
"tab_size": 2,
"translate_tabs_to_spaces": true,
#2 楼 @fate 这个 每次都有是 缩进为 2 了,也 OK, 习惯了缩进为 2。像 vim 可以写配置文件,自动判断语言然后用不同的缩进,不知道 ST 3 行不行。
#1 楼 @hanyangwang Thx!
#4 楼 @springwq np~