Sublime Forum

Open Files Navigation

#1

Hello,

I have this setting for CTRL+TAB and CTRL+SHIFT+TAB:

{“keys”:“ctrl+tab”],“command”:“prev_view_in_stack”},
{“keys”:“ctrl+shift+tab”],“command”:“next_view_in_stack”}

It works, but it cycles through recently viewed tabs.
I want it to cycle through the tabs in the order they are listed in the tab-bar or the side-bar.
How can I achieve that please?

Thank you.

0 Likes

#2

Use:

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

0 Likes

#3

AWESOME! Thank you.

0 Likes