Autocomplete / PhpStorm dialogs disappear in Awesome WM / Xmonad

When you try to autocomplete the code or open the drop-down menu, windows / dialogs will appear for a short time, and then hide behind the main editor window.

The problem is with java window processing in window pane managers such as AwesomeWM.

To solve this problem, see below.

+4
source share
1 answer

You need to edit the parameters of the virtual machine so that the window prompts can be done correctly. I installed PHPStorm under / opt / phpstorm (linux)

Edit:

bin/phpstorm.vmoptions
bin/phpstorm64.vmoptions

Add the following line:

    -Dide.expansion.hints.enabled=false

Restart phpstorm and the problem should be fixed.

ref: http://code.google.com/p/xmonad/issues/detail?id=560

+6
source

Source: https://habr.com/ru/post/1539253/


All Articles