Created
June 15, 2013 06:11
-
-
Save esco/5787117 to your computer and use it in GitHub Desktop.
Navigate through tabs in SublimeText using super (cmd/ctrl) + left / right arrow keys. This overrides the original behavior of jumping to the beginning or end to the line. An alternative is to use the built in ctrl + a to jump to the beginning of the line and ctrl + z to jump to the end of the line.
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": ["super+right"], "command": "next_view" }, | |
{ "keys": ["super+left"], "command": "prev_view" }, | |
{ "keys": ["ctrl+z"], "command": "move_to", "args": {"to":"hardeol", "extend":false}} | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment