Skip to content

Instantly share code, notes, and snippets.

@jlgeering
Created February 29, 2012 11:00
Show Gist options
  • Save jlgeering/1939995 to your computer and use it in GitHub Desktop.
Save jlgeering/1939995 to your computer and use it in GitHub Desktop.
Sublime Text 2 - Key Bindings
[
{ "keys": ["super+up"], "command": "swap_line_up" },
{ "keys": ["super+down"], "command": "swap_line_down" },
{ "keys": ["super+alt+down"], "command": "duplicate_line" },
{ "keys": ["alt+super+s"], "command": "prompt_save_as" },
{ "keys": ["shift+super+s"], "command": "save_all" },
{ "keys": ["ctrl+l"], "command": "show_overlay", "args": {"overlay": "goto", "text": ":"} },
{ "keys": ["super+d"], "command": "run_macro_file", "args": {"file": "Packages/Default/Delete Line.sublime-macro"} },
{ "keys": ["super+7"], "command": "toggle_comment", "args": { "block": false } },
{ "keys": ["super+shift+7"], "command": "toggle_comment", "args": { "block": true } }
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment