Sublime Text 3 自定义配置快捷键

Settings-User:

{
"font_face": "Courier New",
"font_size": 14.0,
"highlight_line": true,
"ignored_packages":
[
"Vintage",
"SublimeLinter"
],
"tab_size": 4,
"translate_tabs_to_spaces": true,
"word_separators": "./\()"':,.;<>~!@#%^&*|+=[]{}`~?",
"word_wrap": true
}

Key-bindding-Key:

[
{ "keys": ["ctrl+alt+f"], "command": "alignment" },
{ "keys": ["ctrl+alt+]"], "command": "compact_expand_css", "args": { "action": "expand" } },
{ "keys": ["ctrl+alt+["], "command": "compact_expand_css", "args": { "action": "compact" } }
]

原文地址:https://www.cnblogs.com/ahwu/p/4015387.html