Skip to content

Instantly share code, notes, and snippets.

@tomkinsc
Last active May 13, 2026 14:05
Show Gist options
  • Select an option

  • Save tomkinsc/df1b34d11c57d8f67c4ff971e7a55b23 to your computer and use it in GitHub Desktop.

Select an option

Save tomkinsc/df1b34d11c57d8f67c4ff971e7a55b23 to your computer and use it in GitHub Desktop.
fix SublimeText home/end key bindings on macOS; via: https://gist.github.com/ihor-lev/120e4c822d145f690f90a3fee77e2e53
[
{ "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": ["command+home"], "command": "move_to", "args": {"to": "bof" } },
{ "keys": ["command+end"], "command": "move_to", "args": {"to": "eof" } },
{ "keys": ["shift+command+home"], "command": "move_to", "args": {"to": "bof", "extend": true } },
{ "keys": ["shift+command+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