Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

switching between tabs in sublime "ctrl+tab"

Tags:

sublimetext2

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?

like image 972
roulette01 Avatar asked Mar 15 '16 19:03

roulette01


People also ask

How do I toggle between tabs?

Switch to the Next Tab To jump to the next tab (on the right) press Ctrl + Tab or Ctrl + PgDn on your keyboard. This shortcut works perfectly on Windows devices and other operating systems (e.g Chrome OS on Chromebooks and Linux) with a familiar keyboard layout.

How do I navigate in Sublime Text?

The Goto Anything shortcuts navigate the current file. If you have a project open, you can press Ctrl ⇧ R to launch Goto Anything In Project. This command will search for symbols across every file in your project.

How do I switch between columns in Sublime Text?

You can also use Ctrl + K , Ctrl + -> and Ctrl + K , Ctrl + <- . Glad to help.


1 Answers

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" }, 
like image 62
r-stein Avatar answered Oct 02 '22 13:10

r-stein