在Visual Studio中,我可以按Ctrl+K+D来缩进所有内容,因此代码结构很好,易于阅读。在Sublime 2中有捷径可以做到这一点吗?


当前回答

步骤:

打开Sublime Text。 开放的偏好。 打开键绑定-用户。 下面是代码:

[{"keys": ["ctrl+shift+c"], "command": "reindent"},]

我使用CtrlShiftC和你也使用其他快捷键。

其他回答

使用Visual Studio Ctrl+K+D等相同的键缩进(我是Visual Studio用户,所以我习惯了这种组合),我建议:

[
{ "keys": ["ctrl+k", "ctrl+d"], "command": "reindent", "args": {"single_line": false} }
]

写在首选项>键绑定-用户

选择所有你想要缩进的代码,然后在Sublime text中按Ctrl +]进行缩进。

对于macOS用户,使用command +]缩进,使用command +[取消缩进。

对于那些喜欢IntelJ IDEA的默认键绑定的人,选择Preferences > Settings -用户:

并粘贴下面的命令,有命令+ shift + l快捷方式自动缩进:

[
   { "keys": ["command+shift+l"], "command": "reindent"}
]

你可以通过菜单Preferences→Keybindings→User添加快捷方式,然后添加:

{ "keys": ["f12"], "command": "reindent", "args": {"single_line": false} }  

Netbeans喜欢快捷键

转到首选项>键绑定>用户,并添加以下代码:

[
    { "keys": ["ctrl+shift+f"], "command": "reindent", "args": {"single_line": false} }
]

使用

Ctrl + Shift + F