4

When trying to autocomplete code or open up the dropdown menu's the window / dialogs will appear for a short time and then get hidden behind the main editor window.

The problem is related to java window handling in tiling window managers such as AwesomeWM.

To solve this see the answer below.

Sam
  • 2,647
  • 2
  • 20
  • 25

1 Answers1

7

You need to edit the VM options so window hinting can be done correctly. I installed PHPStorm under /opt/phpstorm (linux)

Edit:

bin/phpstorm.vmoptions
bin/phpstorm64.vmoptions

Append 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

Sam
  • 2,647
  • 2
  • 20
  • 25