Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Keyboard Shortcut to go full screen in Webstorm/IntelliJ Terminal tool window from terminal?

I googled but have not found any solving documentation/thread regarding this:

Is there a way to set keyboard shortcut to go full screen in Webstorm Terminal tool window from Terminal window?

I know shortcut shift+Command+' but that doesn't work for me inside terminal. I know by double clicking it you can toggle it to full screen but wondering that is it possible to set keyboard shortcut to do it as I do this operation often.

like image 623
Arsal Avatar asked Mar 15 '16 22:03

Arsal


People also ask

How do I make IntelliJ full screen?

To use it, use Tools > Toggle Fullscreen.

What is the shortcut to open terminal in IntelliJ?

Open the Terminal tool window From the main menu, select View | Tool Windows | Terminal or press Alt+F12 .

What is Ctrl Shift O in IntelliJ?

In Eclipse, you press CTRL + SHIFT + O “Organize Imports” to import packages automatically. For IntelliJ IDEA, if you press CTRL + ALT + O “Optimize Imports”, it just removes some unused imports, never imports any package.


1 Answers

Try the "Maximize tool window" command in the menu - Window->Active Tool Window->Maximize tool window

from main toolbar menu

Or from terminal tool menu - Resize-> Maximize tool window

from terminal tool menu

Warning! The following shortcut only works if "Override IDE shortcuts" option is disabled

To map a shortcut to this, open the Preferences dialog and type "Maximize tool window" to search the settings. It should find a match in the keymap section, and you can then use it to assign a shortcut.

image-of-webstorm-maximize-tool-window-setting

It will warn you if you already have something assigned to your choice.

Warning! The following option will cause some problems in Terminal, for example, editing in vim (Esc key) etc.

Also, you can to checkout the "Override IDE shortcuts" setting in the Terminal section of the Preferences. This is enabled by default - I turn it off and find it resolves a lot of niggles I have with using the terminal. The shortcut above only works if it's disabled.

checkout Override IDE shortcuts

like image 126
Robbie Avatar answered Sep 19 '22 13:09

Robbie