Skip to content

Instantly share code, notes, and snippets.

@jk
Created June 14, 2012 08:57
Show Gist options
  • Save jk/2929167 to your computer and use it in GitHub Desktop.
Save jk/2929167 to your computer and use it in GitHub Desktop.
Sublime Text 2 - User defined shortcuts
[
{ "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