switching between tabs in sublime "ctrl+tab"

Sublimetext2

Sublimetext2 Problem Overview


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?

Sublimetext2 Solutions


Solution 1 - Sublimetext2

The default behavior is to goto tab you have used at last. Just add this keybinding to your user keybindings:

{ "keys": ["ctrl+tab"], "command": "next_view" },
{ "keys": ["ctrl+shift+tab"], "command": "prev_view" },

Solution 2 - Sublimetext2

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.

Solution 3 - Sublimetext2

please try command + shift + ] .This will bring you immediately to the next tab.

Command + Ctrl + P : Switch between the projects that are listed on the sublimeText Sidebar.

Categories

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
Questionroulette01View Question on Stackoverflow
Solution 1 - Sublimetext2r-steinView Answer on Stackoverflow
Solution 2 - Sublimetext2Christhofer NataliusView Answer on Stackoverflow
Solution 3 - Sublimetext2TechiescornerView Answer on Stackoverflow