switching between tabs in sublime "ctrl+tab"

Viewed 20557

Anyone notice that the default ctrl+tab doesn't work like the typical consecutive tab switching from left to right, e.g., in Chrome? I'm trying to switch to the next adjacent tab, but it seems to jump around (alphabetic order I think).

How can I change the order in which sublime switches tabs?

3 Answers

In sublime text 3, there is shortcut to switch tab in similar to ctrl+tab in browser.

{ "keys": ["ctrl+pagedown"], "command": "next_view" },
{ "keys": ["ctrl+pageup"], "command": "prev_view" },

While this ctrl+tab has behavior similar to windows alt+tab to switch apps. CMIIW.

{ "keys": ["ctrl+tab"], "command": "next_view_in_stack" },
{ "keys": ["ctrl+shift+tab"], "command": "prev_view_in_stack" },

You can just make custom key binding and swap them around.

And for anyone looking for shortcut to move tab to left & right, there is a plugin for that.

Related