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

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

[elpa] externals/consult 90c88c2129: consult-highlight-mark: Inherit fro


From: ELPA Syncer
Subject: [elpa] externals/consult 90c88c2129: consult-highlight-mark: Inherit from consult-highlight-match
Date: Sun, 7 May 2023 12:57:36 -0400 (EDT)

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

    consult-highlight-mark: Inherit from consult-highlight-match
---
 consult.el | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/consult.el b/consult.el
index 24ffe4927e..a82119ba01 100644
--- a/consult.el
+++ b/consult.el
@@ -375,17 +375,17 @@ Each element of the list must have the form (char name 
handler)."
   '((t :inherit consult-preview-insertion :extend t))
   "Face used for line previews.")
 
-(defface consult-highlight-mark
-  '((t :inherit match))
-  "Face used for mark positions in completion candidates.
-Used for example by `consult-mark'.  The face should be different
-than the `cursor' face to avoid confusion.")
-
 (defface consult-highlight-match
   '((t :inherit match))
   "Face used to highlight matches in the completion candidates.
 Used for example by `consult-grep'.")
 
+(defface consult-highlight-mark
+  '((t :inherit consult-highlight-match))
+  "Face used for mark positions in completion candidates.
+Used for example by `consult-mark'.  The face should be different
+than the `cursor' face to avoid confusion.")
+
 (defface consult-preview-match
   '((t :inherit isearch))
   "Face used for match previews, e.g., in `consult-line'.")



reply via email to

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