Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Eclipse multiple tab rows [duplicate]

Tags:

java

c++

eclipse

Is it possible to have multiple rows of tabs in Eclipse?

I haven't been able to find a setting anywhere in the application. I'm currently running the Galileo version.

like image 988
Wes Avatar asked Nov 28 '11 14:11

Wes


People also ask

How do I duplicate a tab in Eclipse?

In Eclipse you can duplicate a codeline via the shortcut CTRL+ALT+Up/Down.

How do I open a new tab in Eclipse?

To open a new window, click on the Windows menu and select the New Window menu item. Each window can have a different perspective open in them. For example you could open two Eclipse windows one in the Java perspective and the other in the Debug perspective.


2 Answers

No, it is not possible.

If you have too many file opened in Eclipse (too many tabs), maybe two keyboard shortcuts could help:

  • Ctrl+F6
    Shows a list of editors.

  • Ctrl+Shift+E
    Shows a list of editors next to the tabs (like clicking the double arrow next to the tabs)

like image 121
Kent Avatar answered Sep 21 '22 18:09

Kent


I've discovered that while it is true that you cannot have multiple rows of tabs for the same code-space, it is possible to have multiple rows of tabs showing on your window at the same time:

eclipse multiple tab rows

To accomplish this, simply drag a tab up to your title bar and release. It will create another row of tabs.

I generally like to keep my 'main' files on one tab and my reference files on another. Of course to switch from one tab row to another and see the code, requires you to drag the separator up and down.

I like this workaround and it is better than nothing for now (at least until there is a fix released).

like image 27
Wes Avatar answered Sep 23 '22 18:09

Wes