Skip to content

Instantly share code, notes, and snippets.

@jblyberg
Created September 16, 2012 14:40
Show Gist options
  • Select an option

  • Save jblyberg/3732697 to your computer and use it in GitHub Desktop.

Select an option

Save jblyberg/3732697 to your computer and use it in GitHub Desktop.
Sublime Text Keybinding
// Fixes Home and End keys in Sublime Text 2
[
{ "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