Forked from coldnebo/Default (OSX).sublime-keymap -- User
Created
July 17, 2012 09:25
-
-
Save Dayjo/3128319 to your computer and use it in GitHub Desktop.
Sublime Text 2 fix for OSX home/end keys
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": ["home"], "command": "move_to", "args": {"to": "bol"} }, | |
{ "keys": ["end"], "command": "move_to", "args": {"to": "eol"} }, | |
{ "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
thank you so much!
I added support for the command key: https://gist.github.com/mnme/5235936