15

Is it possible to change the way that docked tool windows in IDEA are laid out?

Currently, the bottom most window takes all the horizontal space, and the left and right windows do not take all the vertical space (because of the bottom window).

Is it possible to arrange the layout so that the left and right docked windows take all the vertical space, and the bottom one takes what's left over?

I.e. to have this:

+-----+---------------------------+-----+
|Tree |                           |Tree |
|     | Code                      |     |
|     |                           |     |
|     |                           |     |
|     |                           |     |
|     |---------------------------|     |
|     | Messages                  |     |
|     |                           |     |
+-----+---------------------------+-----+

Instead of this:

+-----+---------------------------+-----+
|Tree |                           |Tree |
|     | Code                      |     |
|     |                           |     |
|     |                           |     |
|     |                           |     |
+-----+---------------------------+-----+
| Messages                              |
|                                       |
+---------------------------------------+
daveb
  • 74,111
  • 6
  • 45
  • 51

2 Answers2

14

This feature is available since IntelliJ IDEA 13 release.

Settings (Preferences on Mac) | Appearance & Behavior | Appearance | Widescreen tool window layout.

widescreen layout


Obsolete original answer:

No, such configuration is not supported at the moment, feel free to submit a feature request.

CrazyCoder
  • 389,263
  • 172
  • 990
  • 904
  • 1
    @Shorn, it's already [implemented in IDEA 13](http://youtrack.jetbrains.com/issue/IDEA-74140#comment=27-510653). – CrazyCoder Jul 16 '13 at 08:06
9

IDE Settings > Appearance > Widescreen tool window layout

Mason Lee
  • 5,130
  • 1
  • 20
  • 15