Skip to content

Instantly share code, notes, and snippets.

@rosado
Created December 4, 2015 10:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rosado/12ef6afad830236b7330 to your computer and use it in GitHub Desktop.
Save rosado/12ef6afad830236b7330 to your computer and use it in GitHub Desktop.
Sublime Text bindings for Home/End on Mac OS X
[
{ "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