Skip to content

Instantly share code, notes, and snippets.

@kaznishi
Created September 12, 2015 06:22
Show Gist options
  • Select an option

  • Save kaznishi/3849cde12460bd64f0c6 to your computer and use it in GitHub Desktop.

Select an option

Save kaznishi/3849cde12460bd64f0c6 to your computer and use it in GitHub Desktop.
sublime text key binding for ctrl+hjkl
[
{ "keys": ["ctrl+l"], "command": "move", "args": {"by": "characters", "forward": true } },
{ "keys": ["ctrl+h"], "command": "move", "args": {"by": "characters", "forward": false } },
{ "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