Created
September 16, 2012 14:40
-
-
Save jblyberg/3732697 to your computer and use it in GitHub Desktop.
Sublime Text Keybinding
This file contains hidden or 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
Show hidden characters
| // Fixes Home and End keys in Sublime Text 2 | |
| [ | |
| { "keys": ["end"], "command": "move_to", "args": {"to": "eol"} }, | |
| { "keys": ["home"], "command": "move_to", "args": {"to": "bol"} }, | |
| { "keys": ["shift+end"], "command": "move_to", "args": { "to": "eol", "extend": true } }, | |
| { "keys": ["shift+home"], "command": "move_to", "args": { "to": "bol", "extend": true } } | |
| ] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment