Home > Software design >  Disable certain suggestions in PhpStorm search
Disable certain suggestions in PhpStorm search

Time:09-22

Im not sure what are these called:

enter image description here

I mean the Show code With me wire stats, Show Memory indicator etc..

Basically im mostly interested so this autocomplete menu would only show files, or at the very least would prioritise files. How can this be achieved?

Im in version 2022.2.1

CodePudding user response:

That popup is called Search Everywhere and you are on an "All" tab that includes combined results from Classes, Files, Symbols, Actions etc.

Either manually switch to the desired tab (using a mouse or by hitting Tab needed number of times) or invoke this popup for the desired search from the start. For that just use the shortcut for Navigate | File... (Ctrl Shift N here on Windows keymap).

enter image description here

enter image description here


Found the solution.

These things are called Actions, and the can be disabled in menu that appears after clicking the small funnel icon in the top right:

I tested, these changes seem to 'survive' a restart.

Yes, at the moment it is remembered only during the session.

https://youtrack.jetbrains.com/issue/IDEA-229285 -- watch this ticket (star/vote/comment) to get notified about any progress.

(P.S. The same happens with Find in Files popup (IDEA-143972) and a few others similar popups as well)

  • Related