Skip to content

Instantly share code, notes, and snippets.

@b-outlaw
Created May 30, 2013 21:48
Show Gist options
  • Save b-outlaw/5681531 to your computer and use it in GitHub Desktop.
Save b-outlaw/5681531 to your computer and use it in GitHub Desktop.
Replicate basic VIM navigation key bindings. Just put this in your User Key Bindings.
{ "keys": ["ctrl+h"], "command": "move", "args": {"by": "characters", "forward": false} },
{ "keys": ["ctrl+l"], "command": "move", "args": {"by": "characters", "forward": true} },
{ "keys": ["ctrl+k"], "command": "move", "args": {"by": "lines", "forward": false} },
{ "keys": ["ctrl+j"], "command": "move", "args": {"by": "lines", "forward": true} }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment