Reputation: 1168
Assume that we loaded in IDEA a project that has multiple modules. Is there any way to do a global search (ctrl + shift + f) in all modules that match a particular pattern in name?
For example:
I want to search the desired keyword only in the modules that contain client
in the name: client-side-filtering
and client-side-validation
. Is this achievable?
Upvotes: 0
Views: 243
Reputation: 26482
You can do this by creating a custom scope:
Find in Path
Scope
button below the search text field...
button+
button in the Scopes
dialog that appears, and select Local
file[client*]:*/
in the pattern text fieldOK
to search in the scope you have just created.Upvotes: 1