Skip to content

Instantly share code, notes, and snippets.

@wizioo
Last active August 29, 2015 14:21
Show Gist options
  • Select an option

  • Save wizioo/af5a1b6c78e3037a864e to your computer and use it in GitHub Desktop.

Select an option

Save wizioo/af5a1b6c78e3037a864e to your computer and use it in GitHub Desktop.
Key binding in Sublime text for OSX with keyboard including Numeric keys (sublime keymap)
[
{ "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 } },
{ "keys": ["ctrl+end"], "command": "move_to", "args": { "to": "eof" } },
{ "keys": ["ctrl+home"], "command": "move_to", "args": { "to": "bof" } },
{ "keys": ["ctrl+shift+end"], "command": "move_to", "args": { "to": "eof", "extend": true } },
{ "keys": ["ctrl+shift+home"], "command": "move_to", "args": { "to": "bof", "extend": true } },
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment