Sublime Forum

Alt tab for sublime tabs

#1

Of course, it’ll have to be some variation. If this already exists please let me know.

0 Likes

#2

Just like other apps with tabs you can change tabs using ctrl+tab, ctrl+shift+tab, ctrl+pagedown or ctrl+pageup.

0 Likes

#3

I appreciate that, ty. I rarely use tab switch shortcuts, not sure why.

Trying it now w 5 tabs open and it’s jumping around randomly, tabbing forwards and reverse. I’m sure there’s some logic there, going in sequence to last used tabs maybe.

0 Likes

#4

ctrl+tab by default goes through the most recently used tabs and ctrl+pagedown goes through them in order. You can change this using custom keybindings:

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

#5

Nice, I appreciate that.

+1, checkmark

0 Likes