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

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

[elpa] externals/consult 16d1e75 4/5: Reorder defcustoms


From: ELPA Syncer
Subject: [elpa] externals/consult 16d1e75 4/5: Reorder defcustoms
Date: Wed, 4 Aug 2021 15:57:08 -0400 (EDT)

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

    Reorder defcustoms
---
 consult.el | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/consult.el b/consult.el
index a5e5735..8ccce82 100644
--- a/consult.el
+++ b/consult.el
@@ -217,12 +217,9 @@ See `consult--multi' for a description of the source 
values."
   "Filter commands for `consult-mode-command'."
   :type '(repeat (choice symbol regexp)))
 
-(defcustom consult-git-grep-command
-  "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'.
-See `consult-grep-command' for more information."
-  :type 'string)
+(defcustom consult-grep-max-columns 300
+  "Maximal number of columns of grep output."
+  :type 'integer)
 
 (defcustom consult-grep-command
   "grep --null --line-buffered --color=always --extended-regexp\
@@ -234,9 +231,12 @@ substrings. ARG is replaced by the filter string and OPTS 
by the auxillary
 command options."
   :type 'string)
 
-(defcustom consult-grep-max-columns 300
-  "Maximal number of columns of grep output."
-  :type 'integer)
+(defcustom consult-git-grep-command
+  "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'.
+See `consult-grep-command' for more information."
+  :type 'string)
 
 (defcustom consult-ripgrep-command
   "rg --null --line-buffered --color=ansi --max-columns=1000\



reply via email to

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