]> code.delx.au - gnu-emacs-elpa/commitdiff
Move swiper-minibuffer-faces to ivy.el
authorOleh Krehel <ohwoeowho@gmail.com>
Tue, 8 Sep 2015 06:25:09 +0000 (08:25 +0200)
committerOleh Krehel <ohwoeowho@gmail.com>
Tue, 8 Sep 2015 06:25:09 +0000 (08:25 +0200)
Fixes #217

ivy.el
swiper.el

diff --git a/ivy.el b/ivy.el
index fd3543aeddb8d0c18b726665773747a5fef92bd9..9a76f82364e1d4ed23b9d836442e319a87193e80 100644 (file)
--- a/ivy.el
+++ b/ivy.el
@@ -1518,6 +1518,13 @@ This string will be inserted into the minibuffer.")
                s))
      cands "\n")))
 
+(defcustom swiper-minibuffer-faces
+  '(swiper-minibuffer-match-face-1
+    swiper-minibuffer-match-face-2
+    swiper-minibuffer-match-face-3
+    swiper-minibuffer-match-face-4)
+  "List of `swiper' faces for minibuffer group matches.")
+
 (defun ivy--format-minibuffer-line (str)
   (let ((start 0)
         (str (copy-sequence str)))
index ae8a9edd431222333bcce0c153068c8429d6a139..7535253bdd1e366d3450eeb46f543c0b8c740819 100644 (file)
--- a/swiper.el
+++ b/swiper.el
                           swiper-match-face-4)
   "List of `swiper' faces for group matches.")
 
-(defcustom swiper-minibuffer-faces
-  '(swiper-minibuffer-match-face-1
-    swiper-minibuffer-match-face-2
-    swiper-minibuffer-match-face-3
-    swiper-minibuffer-match-face-4)
-  "List of `swiper' faces for minibuffer group matches.")
-
 (defcustom swiper-min-highlight 2
   "Only highlight matches for regexps at least this long."
   :type 'integer)