emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/consult 384156f: Reduce docstring duplication


From: ELPA Syncer
Subject: [elpa] externals/consult 384156f: Reduce docstring duplication
Date: Wed, 4 Aug 2021 03:57:09 -0400 (EDT)

branch: externals/consult
commit 384156f08fdd5a266141e70e57c2635d1258678a
Author: Daniel Mendler <mail@daniel-mendler.de>
Commit: Daniel Mendler <mail@daniel-mendler.de>

    Reduce docstring duplication
---
 consult.el | 25 +++++--------------------
 1 file changed, 5 insertions(+), 20 deletions(-)

diff --git a/consult.el b/consult.el
index a794c6f..c29bc09 100644
--- a/consult.el
+++ b/consult.el
@@ -221,10 +221,7 @@ See `consult--multi' for a description of the source 
values."
   "git --no-pager grep --null --color=always --extended-regexp\
    --line-number -I -e ARG OPTS"
   "Command line string for git-grep, see `consult-git-grep'.
-
-The command string must have a specific format, including ARG and OPTS
-substrings. ARG is replaced by the filter string and OPTS by the auxillary
-command options."
+See `consult-grep-command' for more information."
   :type 'string)
 
 (defcustom consult-grep-command
@@ -245,37 +242,25 @@ command options."
   "rg --null --line-buffered --color=ansi --max-columns=1000\
    --smart-case --no-heading --line-number . -e ARG OPTS"
   "Command line string for ripgrep, see `consult-ripgrep'.
-
-The command string must have a specific format, including ARG and OPTS
-substrings. ARG is replaced by the filter string and OPTS by the auxillary
-command options."
+See `consult-grep-command' for more information."
   :type 'string)
 
 (defcustom consult-find-command
   "find . -not ( -wholename */.* -prune ) -ipath *ARG* OPTS"
   "Command line string for find, see `consult-find'.
-
-The command string must have a specific format, including ARG and OPTS
-substrings. ARG is replaced by the filter string and OPTS by the auxillary
-command options. By default the ARG is wrapped in wildcards."
+See `consult-grep-command' for more information."
   :type 'string)
 
 (defcustom consult-locate-command
   "locate --ignore-case --existing --regexp ARG OPTS"
   "Command line string for locate, see `consult-locate'.
-
-The command string must have a specific format, including ARG and OPTS
-substrings. ARG is replaced by the filter string and OPTS by the auxillary
-command options."
+See `consult-grep-command' for more information."
   :type 'string)
 
 (defcustom consult-man-command
   "man -k ARG OPTS"
   "Command line string for man, see `consult-man'.
-
-The command string must have a specific format, including ARG and OPTS
-substrings. ARG is replaced by the filter string and OPTS by the auxillary
-command options."
+See `consult-grep-command' for more information."
   :type 'string)
 
 (defcustom consult-preview-key 'any



reply via email to

[Prev in Thread] Current Thread [Next in Thread]