Disabling the search for incorrect codes globally in Intellij Idea

I recently upgraded to Intellij IDEA 13.1.2 and ran the Search Usage command, including the wrong codes, which are very annoying / slow down the search for common words. I understand that you can open Find Usage Options ( Ctrl + Alt + Shift + 7 ) to disable this, but only for each search. I want to disable it for all searches.

+7
source share
2 answers

Unfortunately, the ability to "permanently" set search usage parameters has changed. Search settings are now reset every time. :( I recommend that you vote and comment on these problem reports:

+6
source

This is not a global setting, but it will help eliminate slowness: in the Project panel, define directories in your project that contain large non-code files, right-click and select "Mark directory as> excluded" from the menu.

My project directory contained the 'log' directory, as well as other directories containing many generated files, and a report directory containing Junit reports, checkstyle, etc. After marking them as excluded, the Find Usages function was much faster, cheers.

0
source

All Articles