diff options
| author | Robert Pluim | 2017-11-17 15:39:02 +0200 |
|---|---|---|
| committer | Eli Zaretskii | 2017-11-17 15:39:02 +0200 |
| commit | 104f3e51fe6d22cf0ee280509df1b133cb8e1f89 (patch) | |
| tree | 352e7a415af879a2e3ae4df6b2d8c4a85abdcdb8 /lisp/vc | |
| parent | d8e0951d5f680aa7f688416eec19a1f062241f44 (diff) | |
| download | emacs-104f3e51fe6d22cf0ee280509df1b133cb8e1f89.tar.gz emacs-104f3e51fe6d22cf0ee280509df1b133cb8e1f89.zip | |
Document how to enter whitespace when using grep-read-files
* lisp/progmodes/grep.el (lgrep, rgrep, grep-read-files): Explain
how to enter whitespace when using grep-read-files. (Bug#29303)
* lisp/progmodes/project.el (project-find-regexp): Likewise.
* lisp/vc/vc-git.el (vc-git-grep): Likewise.
Diffstat (limited to 'lisp/vc')
| -rw-r--r-- | lisp/vc/vc-git.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/vc/vc-git.el b/lisp/vc/vc-git.el index ed85603f828..060072ea54d 100644 --- a/lisp/vc/vc-git.el +++ b/lisp/vc/vc-git.el | |||
| @@ -1407,7 +1407,9 @@ This requires git 1.8.4 or later, for the \"-L\" option of \"git log\"." | |||
| 1407 | "Run git grep, searching for REGEXP in FILES in directory DIR. | 1407 | "Run git grep, searching for REGEXP in FILES in directory DIR. |
| 1408 | The search is limited to file names matching shell pattern FILES. | 1408 | The search is limited to file names matching shell pattern FILES. |
| 1409 | FILES may use abbreviations defined in `grep-files-aliases', e.g. | 1409 | FILES may use abbreviations defined in `grep-files-aliases', e.g. |
| 1410 | entering `ch' is equivalent to `*.[ch]'. | 1410 | entering `ch' is equivalent to `*.[ch]'. As whitespace triggers |
| 1411 | completion when entering a pattern, including it requires | ||
| 1412 | quoting, e.g. `\\[quoted-insert]<space>'. | ||
| 1411 | 1413 | ||
| 1412 | With \\[universal-argument] prefix, you can edit the constructed shell command line | 1414 | With \\[universal-argument] prefix, you can edit the constructed shell command line |
| 1413 | before it is executed. | 1415 | before it is executed. |