ripper234
ripper234

Reputation: 230038

Ctrl-tab in IntelliJ IDEA

Can I configure IntelliJ on Windows to use Ctrl + Tab for switching between files?

Googling finds this old thread that says "no".

Upvotes: 21

Views: 11756

Answers (7)

pti_jul
pti_jul

Reputation: 542

Ensure to disable option "Support screen readers" in File | Settings | Appearance & Behaviour | Appearance :enter image description here

This option blocks these shortcuts

Source: here

Upvotes: 10

percyus
percyus

Reputation: 1

It already works that way. You don't need to configure IntelliJ to use Ctrl+Tab for switching between files, it comes installed to accomplish this.

Upvotes: 0

Firas AT
Firas AT

Reputation: 508

If you are looking for the functionality you normally get by clicking Ctrl + Tab with web browsers, you can change "Select Next Tab" in keymaps settings:

Window > Editor Tabs > Select Next Tab

Settings > Keymaps > Window > Editor Tabs > Select Next Tab

Upvotes: 10

Dmitry
Dmitry

Reputation: 813

You can't enter 'Ctrl+Tab' using a keyboard, but you can select it from the drop-down menu:

Ctrl+Tab

Upvotes: 4

joeslice
joeslice

Reputation: 3454

TabSwitch is certainly the answer to this question. Without doing this, you can use Ctrl + E to pop up the list of recent files and navigate there. So jumping to the most recent file would be Ctrl + E + Enter.

Upvotes: 3

Keith
Keith

Reputation: 1494

Have you tried downloading and installing the TabSwitch plugin? It will allow you to cycle through your open editors and display them in a pop-up window when you hit Alt + A. This default keymapping is easy enough to change to Ctrl + Tab in the Keymap IDE Settings.

Upvotes: 8

Yishai
Yishai

Reputation: 91881

You can't get a pop-up, but you can switch between open tabs with Alt + and Alt + , and you can press Ctrl + E to get a list of recently opened files, which is almost the same thing.

EDIT: (In response to comment) Oh, if that is what, it is just a question of changing the KeyMap. You go to File -> Settings and under there you have a keymap option. You will have to create a new KeyMap (can't change the default) by clicking copy, and then look in the other section for "Select Next Tab in multi-editor file" and change/add the keymap you want. Ctrl + Tab is legit - it is just defaulted to switching between splits.

EDIT 2: (In response to second comment) The function you are looking for in IDEA (at least as close as it gets) is Go Back, which is in the other group of the key map as well. That being said, you said you were looking for how it works in firefox (don't know about Visual Studio) and "Select Next Tab" is the firefox behavior.

Upvotes: 20

Related Questions