Skip to content

Instantly share code, notes, and snippets.

@esco
Created June 15, 2013 06:11
Show Gist options
  • Save esco/5787117 to your computer and use it in GitHub Desktop.
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.
[
{ "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