Can I do an AND search in "Find in path"? Permanently deleted user 创建于 2012年07月05日 03:08 I am looking for the equivalent of grep "searchterm_1" | grep "searchterm_2". Anyway to do a search like this in Rubymine?
You can do a regexp search for (searchterm1.*searchterm2)|(searchterm2.*searchterm1)
Thanks for your answer.
Not exactly what I was looking for, as it's longer to type and takes a bit more brain power to process than a simple and search, but I guess it will have to do for now :)