Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

IntelliJ Split Window Navigation

If I split the editor window (horizontal or vertical) into N tab groups, how do I switch/toggle from one tab group to another via the keyboard? If all of the tabs are in the same group you can switch from each tab easily (CTRL + right/left arrow), but when they're in separate tab groups I can't. I've searched through the key mappings and have not found one that seems to accomplish this. I know I can use the mouse, but I'm trying to find ways to avoid the mouse and stay with the keyboard.

TIA for any help on this.

like image 383
jmq Avatar asked Dec 28 '10 17:12

jmq


People also ask

What is Ctrl Shift O in IntelliJ?

In Eclipse, you press CTRL + SHIFT + O “Organize Imports” to import packages automatically. For IntelliJ IDEA, if you press CTRL + ALT + O “Optimize Imports”, it just removes some unused imports, never imports any package.

How do you set tabs to two spaces in IntelliJ?

To toggle between tabs and spaces: On the main menu, choose Edit → Convert Indents, and then choose To Spaces or To Tabs respectively.


3 Answers

Ctrl+Tab and Ctrl+Shift+Tab for Window | Goto Next Splitter and Goto Previous Splitter. However, these hotkeys may be taken by the Switcher, so you need to remap them in Settings | Keymap.

like image 183
CrazyCoder Avatar answered Oct 08 '22 09:10

CrazyCoder


It looks like it's now mapped to Alt+Tab and Shift+Alt+Tab so no need to remap (at least for OSX 10.5+ settings).

like image 35
Luke Avatar answered Oct 08 '22 08:10

Luke


I had the same case and this plugin solve my problem:

  • https://plugins.jetbrains.com/plugin/7475-tab-shifter
  • https://github.com/dkandalov/tab-shifter

As I write this, here is what it support:

  • Move tab to another editor split
  • Move focus between splits
  • Resize the split

You may refer more details on the page/github. It works pretty well in 2019.2

enter image description here

like image 44
alfonzjanfrithz Avatar answered Oct 08 '22 07:10

alfonzjanfrithz