diff options
author | Lars Ingebrigtsen <larsi@gnus.org> | 2021-09-25 11:54:13 +0200 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2021-09-25 11:54:13 +0200 |
commit | bcbae720d593e3b1e19315dbb7a5ba73174cbe40 (patch) | |
tree | 1b0882f7dcc5c3783f04ae9724e20134e71ad532 /lisp/progmodes/xref.el | |
parent | f90b0269780fd099f29c653f655da7e5cdf6abee (diff) | |
download | emacs-bcbae720d593e3b1e19315dbb7a5ba73174cbe40.tar.gz emacs-bcbae720d593e3b1e19315dbb7a5ba73174cbe40.tar.bz2 emacs-bcbae720d593e3b1e19315dbb7a5ba73174cbe40.zip |
'xref-search-program'-related doc string fixes
* lisp/progmodes/xref.el (xref-search-program): Mention what this
variable controls.
(xref-matches-in-files): Mention the variables that controls it.
Diffstat (limited to 'lisp/progmodes/xref.el')
-rw-r--r-- | lisp/progmodes/xref.el | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/lisp/progmodes/xref.el b/lisp/progmodes/xref.el index fb8090cfb72..af1413e0504 100644 --- a/lisp/progmodes/xref.el +++ b/lisp/progmodes/xref.el @@ -1648,7 +1648,11 @@ The template should have the following fields: (defcustom xref-search-program 'grep "The program to use for regexp search inside files. -This must reference a corresponding entry in `xref-search-program-alist'." +This must reference a corresponding entry in `xref-search-program-alist'. + +This variable is used in `xref-matches-in-files', which is the +utility function used by commands like `dired-do-find-regexp' and +`project-find-regexp'." :type '(choice (const :tag "Use Grep" grep) (const :tag "Use ripgrep" ripgrep) @@ -1660,7 +1664,10 @@ This must reference a corresponding entry in `xref-search-program-alist'." (defun xref-matches-in-files (regexp files) "Find all matches for REGEXP in FILES. Return a list of xref values. -FILES must be a list of absolute file names." +FILES must be a list of absolute file names. + +See `xref-search-program' and `xref-search-program-alist' for how +to control which program to use when looking for matches." (cl-assert (consp files)) (require 'grep) (defvar grep-highlight-matches) |