I know that is used to search : Ctrl+Shift+F or Edit | Find | Find in Path and it worked before, but now always returns the empty set, although I know that what I'm looking for - there is in the project
Maybe someone had this problem?
As an alternative where I needed to refactor the word "holder" with "owner". Using Webstorm's find did not work very well for me. I decided to use instead the the command line with egrep:
egrep -Rli [^place]holder ./src
-R (recursive all files in directory including symbolic links)
-l (file name only)
-i (ignore case)
I found everything and excluded some instances as well via regex. It is way easier and most accurate.
Scopeset to? I've found that IntelliJ likes to sometimes set itself to theDirectoryscope instead ofWhole projectafter performing a search. - ajp15243