给sublime设置格式化代码的快捷键

时间:2023-01-24 21:00:55

sublime中自建的有格式化按钮:

Edit  ->  Line  ->  Reindent  

只是sublime并没有给他赋予快捷键,所以只需加上快捷键即可

Preference  ->  Key Bindings -user 

打开用户快捷键绑定设置添加(比如添加:ctrl + alt +a)

 { "keys": ["ctrl+alt+a"], "command": "reindent" },  //注意不要忘记加逗号