Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

phpStorm, do not index a folder / tree [closed]

I can't find the ability of phpStorm 5 to avoid indexing a specific folder. I don't want to exclude it from the Project-View, just don't want phpStorm to index the containing folders, classes, functions etc.

How is that possible?

like image 589
LeMike Avatar asked Oct 17 '12 11:10

LeMike


People also ask

How do I stop indexing in IntelliJ?

Just Go to: File -> Setting -> Directories. Stop all the files that are going to included and need to empty ADD Content Root. Show activity on this post. It resolved my problem.

What is indexing in PhpStorm?

Indexing in PhpStorm is responsible for the core features of the IDE: code completion, inspections, finding usages, navigation, syntax highlighting, and refactorings. It starts when you open your project, switch between branches, after you load or unload plugins, and after large external file updates.


1 Answers

From their documentation, looks like the only way to achieve this is to Exclude the directory which will hide it from the project tree...

PhpStorm Documentation

To have PhpStorm ignore the selected directory during indexing, parsing, code completion, etc., click the Excluded toolbar button or choose Excluded on the context menu of the selection.

like image 142
JamesHalsall Avatar answered Sep 18 '22 06:09

JamesHalsall