Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do you split and unsplit a window/view in Eclipse IDE?

Tags:

eclipse

ide

People also ask

How do I close multiple windows in Eclipse?

First if you use the right click mouse on the tabs you can choose either Close All or Close Others. Second you can press Ctrl + Shift + W to close all the opened tabs.

How do I open multiple windows in Eclipse?

To open multiple Eclipse windows using the same workspace, select Window→ New Window. It's a good idea to use this technique if you want to work in two different perspectives (such as the Java and Debug perspectives) at the same time in different windows.

How do I split a Window in Visual Studio?

From the Window menu, select Split.

How do I duplicate a tab in Eclipse?

On the Window menu choose Editor , then Clone (since 4.4. x) or New Editor (earlier versions). You can then drag the title bar around to get side-by-side views.


This is possible with the menu items Window>Editor>Toggle Split Editor.

Current shortcut for splitting is:

Azerty keyboard:

  • Ctrl + _ for split horizontally, and
  • Ctrl + { for split vertically.

Qwerty US keyboard:

  • Ctrl + Shift + - (accessing _) for split horizontally, and
  • Ctrl + Shift + [ (accessing {) for split vertically.

MacOS - Qwerty US keyboard:

  • + Shift + - (accessing _) for split horizontally, and
  • + Shift + [ (accessing {) for split vertically.

On any other keyboard if a required key is unavailable (like { on a german Qwertz keyboard), the following generic approach may work:

  • Alt + ASCII code + Ctrl then release Alt

Example: ASCII for '{' = 123, so press 'Alt', '1', '2', '3', 'Ctrl' and release 'Alt', effectively typing '{' while 'Ctrl' is pressed, to split vertically.

Example of vertical split:

https://bugs.eclipse.org/bugs/attachment.cgi?id=238285

PS:

  • The menu items Window>Editor>Toggle Split Editor were added with Eclipse Luna 4.4 M4, as mentioned by Lars Vogel in "Split editor implemented in Eclipse M4 Luna"
  • The split editor is one of the oldest and most upvoted Eclipse bug! Bug 8009
  • The split editor functionality has been developed in Bug 378298, and will be available as of Eclipse Luna M4. The Note & Newsworthy of Eclipse Luna M4 will contain the announcement.

You can open a new editor from the Window menu.

This will give you your current editor once again.


If you right click on one of the tabs, one of the options should be New Editor (for me, it's at the bottom). Select that, and then drag the new tab onto the bottom scroll bar of the code editor, which will split the editor panel in two.


Just click and drag editor title to left, right, top or bottom


I tried the above solutions in Eclipse Luna 4.4.1 but couldn't open two (or multiple editor windows for different files side by side).

Simplest Solution:

  1. Open all files you want in a single window.
  2. Drag the tab of each of the files to right or to the left, eclipse will automatically display a split screen display and will split the editor into two windows once you leave the mouse button.
  3. repeat for each file/tab.

Happy Coding!


Side by side editors in single Eclipse window.

  1. You have an Eclipse window showing a single editor.
  2. Window -> new editor. You now have two editor tabs.
  3. Click and drag one tab towards the right and a green outline of a vertical screen appears (drag tag towards the bottom and an outline of a horizontal screen outline appears). You can let go as soon as the outline appears.
  4. Open file of choice in 2nd editor (recent files show up at bottom of file menu).

ADT/Eclipse:Build: v22.3.0-887826


You might want to check an eclipse plugin called HandySplit

It allows to split an editor into two and move tabs from one editors stack to another with keyboard shortcuts only.

That works on Eclipse Juno or higher. For the previous Eclipse versions check this out