sublime 2 设置Reindent快捷键_设置tab_size

sublime 2 设置Reindent快捷键_设置tab_size


如下图所示,sublime 有一个Reindent的作用,但是没有快捷键,如何给Reindent设置一个快捷键呢?

Preference  ->  Key Bindings -user 

如下,

[
{ "keys": ["f12"], "command": "reindent"} 
]


绑定f12 为reindent 的快捷键。

那如何设置 tab_size的大小,

 Preferences -> Settings-User

如下,设置tab 的大小为2,并设置 空格代码tab 。

{
	"tab_size": 2,
	"translate_tabs_to_spaces": true,
	"font_size": 15,
	"ignored_packages":
	[
		"Vintage"
	]
}


这样就为全局的文件 做了全局的配置,那我就想根据特定的语法如何配置,

首先打开 scala 文件,然后,

Preferences -> Settings - More -> Syntax Specific - User

如下,

{ "tab_size": 2, "translate_tabs_to_spaces": true }

如图所示,

sublime 2 设置Reindent快捷键_设置tab_size_第1张图片


=================END=================


你可能感兴趣的:(sublime 2 设置Reindent快捷键_设置tab_size)