Created
May 30, 2013 21:48
-
-
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.
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+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