Skip to content

Instantly share code, notes, and snippets.

@jschomay
Created July 9, 2013 16:01
Show Gist options
  • Save jschomay/5958594 to your computer and use it in GitHub Desktop.
Save jschomay/5958594 to your computer and use it in GitHub Desktop.
sublime key bindings
[
{ "keys": ["tab"], "command": "move", "args": {"by": "characters", "forward": true}, "context":
[
{ "key": "following_text", "operator": "regex_contains", "operand": "^[)\"'\\]]", "match_all": true },
{ "key": "auto_complete_visible", "operator": "equal", "operand": false }
]
},
{ "keys": ["alt+up"], "command": "move_caret_top" },
{ "keys": ["alt+command+up"], "command": "move_caret_back", "args": { "nlines": 10} },
{ "keys": ["alt+command+down"], "command": "move_caret_forward", "args": { "nlines": 10} },
{ "keys": ["alt+down"], "command": "move_caret_bottom"},
// swap the keybindings for paste and paste_and_indent
{ "keys": ["super+v"], "command": "paste_and_indent" },
{ "keys": ["super+shift+v"], "command": "paste" }
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment