Created
March 2, 2012 15:45
-
-
Save osa1/1959252 to your computer and use it in GitHub Desktop.
my sublime text keybindings to get a more vim-like behavior
This file contains 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": ["ctrl+u"], "command": "move", "args": {"by": "pages", "forward": false} }, | |
{ "keys": ["ctrl+d"], "command": "move", "args": {"by": "pages", "forward": true} }, | |
{ "keys": ["ctrl+h"], "command": "focus_group", "args": { "group": 0 } }, | |
{ "keys": ["ctrl+l"], "command": "focus_group", "args": { "group": 1 } }, | |
{ "keys": ["ctrl+w"], "command": "delete_word", "args": { "forward": false } }, | |
{ "keys": ["ctrl+q"], "command": "close" }, | |
{ "keys": ["ctrl+t"], "command": "" }, | |
{ "keys": ["ctrl+m"], "command": "next_view" }, | |
{ "keys": ["ctrl+n"], "command": "prev_view" }, | |
{ "keys": ["ctrl+t"], "command": "woo"} | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment