Created
June 14, 2012 08:57
-
-
Save jk/2929167 to your computer and use it in GitHub Desktop.
Sublime Text 2 - User defined shortcuts
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": ["ctrl+shift+x"], "command": "tidy_xml" }, | |
{ "keys": ["ctrl+shift+j"], "command": "prettify_json" }, | |
{ "keys": ["alt+up"], "command": "inc_dec_value", "args": { "action": "inc_min" } }, | |
{ "keys": ["alt+down"], "command": "inc_dec_value", "args": { "action": "dec_min" } }, | |
{ "keys": ["super+up"], "command": "inc_dec_value", "args": { "action": "inc_max" } }, | |
{ "keys": ["super+down"], "command": "inc_dec_value", "args": { "action": "dec_max" } }, | |
{ "keys": ["super+alt+up"], "command": "inc_dec_value", "args": { "action": "inc_all" } }, | |
{ "keys": ["super+alt+down"], "command": "inc_dec_value", "args": { "action": "dec_all" } }, | |
// { "keys": ["escape"], "command": "auto_complete" }, | |
{ "keys": ["super+e"], "command": "run_macro_file", "args": {"file": "Packages/Default/Delete Line.sublime-macro"} }, | |
{ "keys": ["super+j"], "command": "join_lines" }, | |
{ "keys": ["super+d"], "command": "duplicate_line" } | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment