Sublime Forum

Sublime and TAB

#1

Hi all
Can some1 plz explain to me is there any pattern whit Ctrl+Tab in sublime. Ctrl+Tab and Ctrl+Shift+Tab to move between open Tabs, but as I open more tabs the direction of switches changes randomly. I mean, once Ctrl+Tab is to move left, once to move right, once it skips tabs, once it does not. I tried to line them as they were opened and put them in a line left to right but again no effect, it just goes what ever it wants.

0 Likes

#2

In the Default key bindings, there is this:

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

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

If you want the next_ and prev_view commands to be the default you need to add this to your User key bindings (which I did as well):

	// ctrl+tab overrides
	{ "keys": "ctrl+tab"], "command": "next_view" },
	{ "keys": "ctrl+shift+tab"], "command": "prev_view" },
0 Likes

#3

THX just figgure it up THXXXXXXXXX UUUUUUUUU -)

0 Likes