Last active
May 13, 2026 14:05
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
| [ | |
| { "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