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

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

[elpa] externals/consult a3937825b5 3/3: Move variable


From: ELPA Syncer
Subject: [elpa] externals/consult a3937825b5 3/3: Move variable
Date: Wed, 23 Nov 2022 13:57:25 -0500 (EST)

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

    Move variable
---
 consult.el | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/consult.el b/consult.el
index bc9284f6ba..513eae1207 100644
--- a/consult.el
+++ b/consult.el
@@ -67,13 +67,6 @@
 
 ;;;; Customization
 
-(defcustom consult-yank-rotate
-  (if (boundp 'yank-from-kill-ring-rotate)
-      yank-from-kill-ring-rotate
-    t)
-  "Rotate the `kill-ring' in the `consult-yank' commands."
-  :type 'boolean)
-
 (defcustom consult-narrow-key nil
   "Prefix key for narrowing during completion.
 
@@ -357,6 +350,13 @@ Can be either a string, or a list of strings or 
expressions."
 Each element of the list must have the form \\='(char name handler)."
   :type '(repeat (list character string function)))
 
+(defcustom consult-yank-rotate
+  (if (boundp 'yank-from-kill-ring-rotate)
+      yank-from-kill-ring-rotate
+    t)
+  "Rotate the `kill-ring' in the `consult-yank' commands."
+  :type 'boolean)
+
 ;;;; Faces
 
 (defgroup consult-faces nil



reply via email to

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