branch: externals/consult
commit cfbe798e42a8d45b500ee10e6c857afa189b5570
Author: Daniel Mendler <[email protected]>
Commit: Daniel Mendler <[email protected]>
Update docstring
---
consult.el | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/consult.el b/consult.el
index 34b18bd..d70439f 100644
--- a/consult.el
+++ b/consult.el
@@ -272,7 +272,8 @@ See `consult-ripgrep-command' for details on the
configuration."
(defcustom consult-regexp-function
#'consult-spaced-regexp
"Function which transforms a string to a regular expression.
-The default value "
+By default, spaces in the input string are replaced by `.*'. In order to
+disable the regexp transformation, use the `identity' function."
:type '(choice (const :tag "Space separated" consult-spaced-regexp)
(const :tag "No transformation" identity)
(function :tag "Custom function")))