I can't find a good way of putting Eclipse windows on two monitors. Currently I just detached (clicked on a header and dragged) a few windows to a secondary monitor (package explorer, console, and outline) while leaving primary monitor with maximized source editing window.

It works pretty well except few annoying issues. Detached windows are not in focus while you are editing your code. Which means that, for example, last build shortcut (Alt-Shift-X, Q) doesn't work because it can't find build file (because package explorer is not in focus). Also "Selected resources" option in a file search menu is not picking up current package selection.

So I was wondering is detaching windows a right way to go? Do you have any better solutions so at least package explorer stays in focus?

Thanks.

PS. Btw "unable to find build" error started showing up only in 3.4 ver for some reason.

link|improve this question

75% accept rate
feedback

5 Answers

In the Eclipse Helios (currently 3.6.2) I found very useful the use of another window to bring up multiple documents in different screens. in the main menu, go:

Window > New window,

and drug it to the screen you prefer. Double click in the filename on the editor and will maximize the editor's window.

I hope i helped.

Kyr.

PS: If you want to maintain both windows when you closing Eclipse, don't close them one by one. Instead go: File > Exit.

link|improve this answer
This works great on Mac with dual screens. – nazgul42 Jul 6 '11 at 20:46
3  
I didn't know this - kudos (and +1) to you! – Lawrence Tierney Sep 15 '11 at 9:23
1  
Thanks for the tip and +1. However, the windows don't "communicate", e.g. javadoc view in one window won't be updated by selections in the other, similarly jUnit. – David Nov 2 '11 at 15:01
Never knew of this. I'm going to test it today. Thank you so much. – Matthew Doucette Jan 30 at 18:33
@David My only experience in eclipse comes from CDT and what you are saying is also correct in CDT. Nevertheless if you select a variable in one window, the same variable is highlighted by indexer in the other window. The same applies to other global operations such as refreshing the explorer etc... – Kyr Feb 3 at 21:28
show 1 more comment
feedback

I use Ultramon to spread my Eclipse across two monitors.

I have the left hand side devoted to the code and the right hand side to the Project Explorer, Search, Console, Ant and Outline views.

This way I get focus to all of my Eclipse stuff when I click on it in the taskbar or alt-tab. I can also overlay another window (usually my browser or a trace viewer) on the right hand monitor. I use SemTop to pin the overlayed window if I want to code and read some reference at the same time (This is where shortcuts keys come in handy).

So I can look at code and StackOverflow at the same time ;)

Ultramon

link|improve this answer
Could you provide a link to ultramon? – Decio Lira Aug 7 '09 at 15:59
There's a freeware alternative for SemTop I like: Dekspins – prefabSOFT May 10 '11 at 13:38
@prefabSOFT - I've actually started using an AutoHotkey script instead. – Feet May 11 '11 at 22:39
This is exactly what I used to do in Visual Studio, use Ultramon to maximize the IDE to both monitors (functionality even Windows 7 still lacks to my knowledge, please correct me if I am wrong) and then split the source section in half, manually making the split align with the monitor split. The split matching the split in monitors would break whenever a section within the IDE would change size automatically, which happens. Would love native dual monitor support. – Matthew Doucette Jan 30 at 18:32
1  
@MatthewDoucette - Now I'm a .NET developer, I do exactly the same with Visual studio. Basically just replicated my Eclipse setup. – Feet Jan 31 at 20:13
show 2 more comments
feedback

I split the eclipse environment over two monitors (both running at 1600*1200)

on the left I have the main coding window maximised with the outline down the right hand side.

On the second monitor I have the Junit window, Problems, Console and the package explorer

I have the same layout duplicated for all the perspectives that I use.

I have never used the Alt-Shift-Q short cut but I have found the Alt-Shift-X, T shortcut for running junit works fine when I am focussed in the main coding window .

Possibly have the package explorer on the same monitor as the coding window?

link|improve this answer
By "split" do you mean two Eclipse windows or one maximized across two monitors? – Matthew Doucette Feb 9 at 18:31
feedback

I have a widescreen primary monitor and a non-widescreen secondary monitor. The layout on my primary monitor is broken into three columns: column 1 contains the package explorer in the top half and the outline, hierarchy and search results views in tabs on the lower half. Column two is code, and is about two and a half times wider than the other two columns. (Since everybody has widescreen monitors at my office, we've standardized on 100-character lines instead of 80.) The third column has the debug view at the top, somewhat small; the variables, expressions and JUnit views in tabs below that, taking most of the vertical space; and a small breakpoints view below that. My secondary monitor has two torn off windows: the console takes up most of the screen, and below it I have a smaller window containging the problems and history views in tabs.

My only gripe is when I remote desktop in from my single-monitor setup at home: the two windows on the secondary monitor move over to the primary one. I have a "One Screen" perspective which I use in this scenario to rectify that, but when I'm back at work and switch to the dual-monitor perspective, I have to manually move the windows back over to the other monitor. I wish Eclipse would just leave them over there, but I can't see any way to make it do that.

link|improve this answer
feedback

I have my Package Explorer and Code on my primary monitor and the Console on my secondary monitor. I do this by right clicking over console tab and selecting Move.. then View. This way I am able to drag, drop and resize the console window.

Hope this helps!

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.