Created
July 9, 2013 16:01
-
-
Save jschomay/5958594 to your computer and use it in GitHub Desktop.
sublime key bindings
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
[ | |
{ "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