How can I maximize the editor pane in IntelliJ IDEA?

In Eclipse, I can type Ctrl+M or click the maximize icon in the editor pane to make the editor pane take up the entire Eclipse window, and then again to restore the pane back to its previous size exposing the other panes.

Is it possible to perform the equivalent in IntelliJ IDEA?

To clarify, I'm asking about hiding all other tool panes to show only the editor pane. I'm not asking how to go to distraction-free mode, because this is mode is completely "full screen", hiding all toolbars, window decorations, etc.


The closest thing would be to hide all tool windows by invoking the Hide All Tool Windows action. The shortcut for that is Ctrl + Shift + F12 (Default keymap).

This will hide all tool windows, effectively maximizing the editor window (though not full screen). The IntelliJ menu bar, toolbar, breadcrumb and tab bar will still be visible.

I'm using IntelliJ 11.1.2 on Kubuntu 12.04 LTS with the Default keymap.

14.0.3 on MacOS X

It's Cmd + Shift + F12 in IntelliJ IDEA 14.0.3 on MacOS X.

UPDATE on 2015-03-24: IntelliJ IDEA 14.1 now has support for Distraction Free Mode. You can invoke it by clicking View > Enter Distraction Free Mode. In this mode, IntelliJ hides everything but the menu. For more details, follow their video detailing the new feature: https://www.youtube.com/watch?v=uVwE8MFgYig.


If you want to maximize a pane , select that pane (by clicking inside or on its title bar) and then use the shortcut "Ctrl+Shift+Quotes"


You can double click anywhere on the tab title bar of the editor pane.


All answers work for only hiding other tools. If you have more than one editor pane and you want to maximize only one editor pane (hide all tolls and hide all other editor panes), it is not possible right now.

PyCharm version: 2018.2.7


Using IntelliJ 14.1.5

If you want to maximize the editor window AND full-screen the app, you can create a macro with the following two commands:

Toggle Full Screen Mode
Hide All Tool Windows

And then assign a hotkey to the macro. Here's how I did this:

  • File > Settings > Keymap
  • Use the search bar to search for the two commands above. Assign obscure hotkeys to those.
  • Edit > Macros > Start macro recording
  • Hit the two obscure hotkeys you just assigned: this should max the editor and full-screen the app
  • Stop recording. Name the macro
  • Open File > Settings > Keymap again. Find the Macros section, find your macro, assign a nice hotkey to it.