Created
November 3, 2013 19:58
-
-
Save dmishh/7294149 to your computer and use it in GitHub Desktop.
My Sublime Text keymap
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
[ | |
{ "keys": ["super+shift+'"], "command": "reindent" }, | |
{ "keys": ["alt+f1"], "command": "reveal_in_side_bar" }, | |
{ "keys": ["ctrl+t"], "command": "side_bar_new_file2" }, | |
{ "keys": ["f2"], "command": "side_bar_rename" }, | |
{ "keys": ["shift+super+up"], "command": "swap_line_up" }, | |
{ "keys": ["shift+super+down"], "command": "swap_line_down" }, | |
{ "keys": ["super+backspace"], "command": "run_macro_file", "args": {"file": "Packages/Default/Delete Line.sublime-macro"} }, | |
{ "keys": ["super+/"], "command": "run_macro_file", "args": {"file": "Packages/User/Comment Line.sublime-macro"} }, | |
{ "keys": ["super+shift+r"], "command": "goto_symbol_in_project" }, | |
{ "keys": ["super+shift+v"], "command": "paste" }, | |
{ "keys": ["super+shift+w"], "command": "close_all" }, | |
{ "keys": ["super+v"], "command": "paste_and_indent" }, | |
{ "keys": ["super+shift+e"], "command": "expand_selection_to_quotes" }, | |
{ "keys": ["super+shift+g"], "command": "expand_selection", "args": {"to": "brackets"} }, | |
{ "keys": ["super+shift+n"], "command": "advanced_new_file" }, | |
{ "keys": ["super+shift+m"], "command": "prompt_select_workspace" }, | |
{ "keys": ["f3"], "command": "find_next" }, | |
{ "keys": ["shift+f3"], "command": "find_prev" }, | |
{ "keys": ["super+g"], "command": "show_overlay", "args": {"overlay": "goto", "text": ":"} }, | |
{ "keys": ["super+t"], "command": "goto_definition" }, | |
{ "keys": ["ctrl+super+x"], "command": "prefixr" }, | |
// Go to left bracket | |
{ | |
"keys": ["ctrl+up"], | |
"command": "bh_key", | |
"args": | |
{ | |
"lines" : true, | |
"plugin": | |
{ | |
"type": ["__all__"], | |
"command": "bh_modules.bracketselect", | |
"args": {"select": "left"} | |
} | |
} | |
}, | |
// Go to right bracket | |
{ | |
"keys": ["ctrl+down"], | |
"command": "bh_key", | |
"args": | |
{ | |
"lines" : true, | |
"plugin": | |
{ | |
"type": ["__all__"], | |
"command": "bh_modules.bracketselect", | |
"args": {"select": "right"} | |
} | |
} | |
} | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment