0

Windows 10, Emacs 25, Helm I want to find exact text "data autoupdate" in all files in some folder in my Android Git project.

So I use command

M-x helm-grep-do-git-grep

And input text "data autoupdate"

Here result:

enter image description here

As you can see it find 4 candiates. But I not need first candidate. I need exact matches. So the candidates must be 3.

How I can do this?

a_subscriber
  • 3,854
  • 1
  • 17
  • 47

1 Answers1

1

Search for :

data\ autoupdate

Then it would only return rows where "data" is immediately followed by a space and then "autoupdate"

Jeeves
  • 611
  • 4
  • 5