Skip to content

Instantly share code, notes, and snippets.

@osa1
Created March 2, 2012 15:45
Show Gist options
  • Save osa1/1959252 to your computer and use it in GitHub Desktop.
Save osa1/1959252 to your computer and use it in GitHub Desktop.
my sublime text keybindings to get a more vim-like behavior
[
{ "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