entis
entis

Reputation: 309

Exclude folders based on regular expressions in IntelliJ Idea PhpStorm

Is there any way to exclude folders in PhpStorm through regular expressions?

I have multiple "subproject" folders in my main project folder and every subproject has its own vendor folder I want to exclude from indexing.

So far I've been excluding those folders manually but since every week or so more subprojects are added the maintenance is annoying. If I decided to exclude another subproject folder, I'd have repeat that action for 30+ subprojects.

This question suggests ignoring folders (which can use file masks to select files/folders), but I need to be able to see the folders in my project window and ignoring the folders hides them.

Upvotes: 0

Views: 2233

Answers (1)

LazyOne
LazyOne

Reputation: 165088

This question suggests ignoring folders (which uses regex to select files/folders)

It does not uses regex. It excludes by exact name or ordinary file masks (e.g. standard * char that means any).


Back to the subject -- it's not possible.

Watch those and related tickets (star/vote/comment) to get notified on any progress.

Upvotes: 1

Related Questions