Skip to content

Instantly share code, notes, and snippets.

@thiagosf
Last active January 28, 2018 18:12
Show Gist options
  • Select an option

  • Save thiagosf/9eedf040b6c49084bf74cfde1f0a03d5 to your computer and use it in GitHub Desktop.

Select an option

Save thiagosf/9eedf040b6c49084bf74cfde1f0a03d5 to your computer and use it in GitHub Desktop.
Home e end para Sublime Text (Preferences > Key Bindings > User), credits: https://coderwall.com/p/upolqw/fix-sublime-text-home-and-end-key-usage-on-mac-osx
[
{ "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 } }
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment