Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save Dayjo/3128319 to your computer and use it in GitHub Desktop.
Save Dayjo/3128319 to your computer and use it in GitHub Desktop.
Sublime Text 2 fix for OSX home/end keys
{ "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 } }
@mnme
Copy link

mnme commented Mar 25, 2013

thank you so much!

I added support for the command key: https://gist.github.com/mnme/5235936

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment