You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is it possible to add a new box for excluded words or something? (like the Exclude dirs box): Search for the this but not that..?
I tried using regex for that but it doesn't seem to work, like: ^(?!.*not).*yes.*$ or (?=.*yes)(?!.*not)(.+)
What I need is to find files that has a certain word (ex: yes), and not the other (ex: not). So if the file has both words it doesn't show in the results (something like a 2-step inverse search), it shows only the file that has the main word, and if the other word is present, it doesn't show it in the search results.
The text was updated successfully, but these errors were encountered:
It would be helpful if there was an option for "Inverse search in found files". That way, the inverse search would not have to be the first operation. You could search for files containing X, and then search those results for those that do not contain Y.
Is it possible to add a new box for excluded words or something? (like the Exclude dirs box): Search for the this but not that..?
I tried using regex for that but it doesn't seem to work, like:
^(?!.*not).*yes.*$
or(?=.*yes)(?!.*not)(.+)
What I need is to find files that has a certain word (ex: yes), and not the other (ex: not). So if the file has both words it doesn't show in the results (something like a 2-step inverse search), it shows only the file that has the main word, and if the other word is present, it doesn't show it in the search results.
The text was updated successfully, but these errors were encountered: