Skip to content

Instantly share code, notes, and snippets.

@deevis
Created September 27, 2017 21:27
Show Gist options
  • Save deevis/0ade0f184f9ad528c66a56482728419f to your computer and use it in GitHub Desktop.
Save deevis/0ade0f184f9ad528c66a56482728419f to your computer and use it in GitHub Desktop.
Home/End keys on Mac OSX with Sublime
{ "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 } },
{ "keys": ["ctrl+home"], "command": "move_to", "args": {"to": "bof"} },
{ "keys": ["ctrl+end"], "command": "move_to", "args": {"to": "eof"} },
{ "keys": ["ctrl+shift+home"], "command": "move_to", "args": {"to": "bof", "extend": true} },
{ "keys": ["ctrl+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