[
{ "keys": ["ctrl+d"], "command": "find_under_expand" },
// 删除一整行
{ "keys": ["super+d"], "command": "run_macro_file", "args": {"file": "Packages/Default/Delete Line.sublime-macro"} },
// 光标移动到下一行
{ "keys": ["shift+enter"], "command": "run_macro_file", "args": {"file": "Packages/Default/Add Line.sublime-macro"} },
// 当前行与前一行互换位置
{ "keys": ["super+up"], "command": "swap_line_up" },
// 当前行与下一行互换位置
{ "keys": ["super+down"], "command": "swap_line_down" }
]
{
"color_scheme": "Packages/Color Scheme - Default/Eiffel.tmTheme",
"draw_minimap_border": true,
"font_size": 14.0,
"highlight_line": true,
"ignored_packages":
[
"Markdown",
"SublimeCodeIntel",
"Vintage"
],
"line_padding_bottom": 5,
"line_padding_top": 5
}
原文:http://www.cnblogs.com/djawh/p/5014178.html