Last active
January 28, 2018 18:12
-
-
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
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
| [ | |
| { "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