Sublime text2用户自定义配置

[
{ "keys": ["ctrl+d"], "command": "run_macro_file", "args": {"file": "Packages/Default/Delete Line.sublime-macro"} },
{ // Emmet: Zencoding
"keys": [
"ctrl+enter"
],
"command": "expand_as_you_type",
"context": [
{
"operand": false,
"operator": "equal",
"match_all": true,
"key": "setting.is_widget"
},
{
"match_all": true,
"key": "emmet_action_enabled.expand_as_you_type"
}
]
},
{ "keys": ["ctrl+alt+o"], "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/3806369.html