Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save kugaevsky/2852466 to your computer and use it in GitHub Desktop.
Save kugaevsky/2852466 to your computer and use it in GitHub Desktop.
Sublime Text 2 fix for OSX home/end keys with selection
{ "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", "extendend": true} }
@kugaevsky
Copy link
Author

Add selection

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