#将eclipse中的一些快捷键移植过来:
Preferences -> Key Bindings - User ->
[
{ "keys": ["alt+/"], "command": "auto_complete"},
{ "keys": ["ctrl+d"], "command": "run_macro_file", "args": {"file": "Packages/Default/Delete Line.sublime-macro"} },
{ "keys": ["ctrl+shift+f"], "command": "reindent" },
{ "keys": ["shift+enter"], "command": "run_macro_file", "args": {"file": "Packages/Default/Add Line.sublime-macro"} },
{ "keys": ["alt+up"], "command": "swap_line_up" },
{ "keys": ["alt+down"], "command": "swap_line_down" },
{ "keys": ["ctrl+shift+s"], "command": "save_all" },
{ "keys": ["shift+ctrl+f4"], "command": "close_all" },
{ "keys": ["shift+ctrl+x"], "command": "upper_case" },
{ "keys": ["shift+ctrl+y"], "command": "lower_case" },
{ "keys": ["ctrl+alt+j"], "command": "join_lines" },
// 复制当前行到上一行
{ "keys": ["ctrl+alt+up"], "command": "duplicate_line" },
// 复制当前行到下一行
{ "keys": ["ctrl+alt+down"], "command": "duplicate_line" },
// 光标移动到指定行
{ "keys": ["ctrl+l"], "command": "show_overlay", "args": {"overlay": "goto", "text": ":"} },
// 快速定位到选中的文字
{ "keys": ["ctrl+k"], "command": "find_under_expand_skip" }
]