Created
November 19, 2014 02:47
-
-
Save Scotchester/6027e1e18c07df67fb16 to your computer and use it in GitHub Desktop.
Home and End Key Bindings for Sublime Text on OS X
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
Show hidden characters
[ | |
{ "keys": ["home"], "command": "move_to", "args": {"to": "bol"} }, | |
{ "keys": ["end"], "command": "move_to", "args": {"to": "eol"} }, | |
{ "keys": ["shift+home"], "command": "move_to", "args": {"to": "bol", "extend": true} }, | |
{ "keys": ["shift+end"], "command": "move_to", "args": {"to": "eol", "extend": true} }, | |
{ "keys": ["super+home"], "command": "move_to", "args": {"to": "bof"} }, | |
{ "keys": ["super+end"], "command": "move_to", "args": {"to": "eof"} }, | |
{ "keys": ["super+shift+home"], "command": "move_to", "args": {"to": "bof", "extend": true} }, | |
{ "keys": ["super+shift+end"], "command": "move_to", "args": {"to": "eof", "extend": true} } | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment