by various version control systems.
@vindex grep-find-hide
- The boolean option @code{grep-find-hide} controls shortening of the
-displayed command line by hiding the part containing ignored
-directories and files. The hidden part can be revealed by clicking on
-the button with ellipsis.
+ By default, the shell commands constructed for @code{lgrep},
+@code{rgrep}, and @code{zgrep} are abbreviated for display by
+concealing the part that contains a long list of files and directories
+to ignore. You can reveal the concealed part by clicking on the
+button with ellipsis, which represents them. To disable this
+abbreviation of the shell commands, customize the option
+@code{grep-find-hide} to a @code{nil} value.
@node Flymake
@section Finding Syntax Errors On The Fly
@kbd{C-M-w} (@code{isearch-yank-symbol-or-char}) appends the next
character or symbol at point to the search string. This is an easy way
to search for another occurrence of the symbol at point. (The decision
-of whether to copy a character or a word is heuristic.)
+of whether to copy a character or a symbol is heuristic.)
@kindex M-s C-e @r{(Incremental search)}
@findex isearch-yank-line
(isearch--yank-char-or-syntax '(?w) 'forward-word))
(defun isearch-yank-symbol-or-char ()
- "Pull next character or word from buffer into search string."
+ "Pull next character or symbol from buffer into search string."
(interactive)
(isearch--yank-char-or-syntax '(?w ?_) 'forward-symbol))