Skip to content

Instantly share code, notes, and snippets.

@dasgoll
Forked from jmnwong/ST2 Cycle Tabbing
Last active January 11, 2018 07:38
Show Gist options
  • Save dasgoll/94bc808bfe67dc91a5c81b27568f6228 to your computer and use it in GitHub Desktop.
Save dasgoll/94bc808bfe67dc91a5c81b27568f6228 to your computer and use it in GitHub Desktop.
Makes CTRL-Tab cycle tabs in order for Sublime Text.
Put in (Preferences -> Key Bindings - User):
{ "keys": ["ctrl+tab"], "command": "next_view" },
{ "keys": ["ctrl+shift+tab"], "command": "prev_view" }
so you would have
[
{ "keys": ["ctrl+tab"], "command": "next_view" },
{ "keys": ["ctrl+shift+tab"], "command": "prev_view" }
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment