Sublime Forum

Tab cycle order?

#1

Sorry to ask the obvious, but I cannot find this anywhere… How do I make Ctrl+(Shift+)Tab cycle tabs in the order that they are shown, rather than MRU order?

1 Like

#2

Change your keybindings from “next_view_in_stack” or whatever to just “next_view” or whatever.

0 Likes

#3

Without changing the bindings, CTRL+PageUp/Down cycles without MRU, IIRC.

0 Likes

#4

Right Mouse Button + Scroll up / Down
Also switches tabs by order of appearance.

or

User preference JSON to swap functionality of ctrl+tab with ctrl+pageup:
{ "keys": ["ctrl+tab"], "command": "next_view" }, { "keys": ["ctrl+shift+tab"], "command": "prev_view" }, { "keys": ["ctrl+pagedown"], "command": "next_view_in_stack" }, { "keys": ["ctrl+pageup"], "command": "prev_view_in_stack" }

3 Likes

Change file tab cycling order from last used to position in tab bar