Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I maximize the editor pane in IntelliJ IDEA?

People also ask

How do I resize a window in IntelliJ?

Resize a tool window To resize the active tool window, press Ctrl+Alt+Shift+Left , Ctrl+Alt+Shift+Right , Ctrl+Alt+Shift+Up , Ctrl+Alt+Shift+Down or use the main menu actions under Window | Active Tool Window | Resize.

How do I make IntelliJ full screen?

ctrl+shift+f12 windows. Thanks!

How do I change tab size in IntelliJ?

Open the Settings dialog by navigating to File -> Settings . Under Project Settings [yourproject] on the left side of the dialog, navigate to Code Style -> General . The Tab size is configurable on that pane, and the value you provide applies only to the project named yourproject .


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.