branch: master
commit 9899547ef5ab45c5acc69d60fbb8baa64f04fab4
Author: Oleh Krehel <ohwoeo...@gmail.com>
Commit: Oleh Krehel <ohwoeo...@gmail.com>

    ivy.el (ivy-action): New face
    
    Re #469
---
 ivy.el |    6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/ivy.el b/ivy.el
index 7e0f397..296f873 100644
--- a/ivy.el
+++ b/ivy.el
@@ -108,6 +108,10 @@
   '((t :inherit font-lock-builtin-face))
   "Face used by Ivy for matching virtual buffer names.")
 
+(defface ivy-action
+  '((t :inherit font-lock-builtin-face))
+  "Face used by Ivy for displaying keys in `ivy-read-action'.")
+
 (setcdr (assoc load-file-name custom-current-group-alist) 'ivy)
 
 (defcustom ivy-height 10
@@ -480,7 +484,7 @@ selection, non-nil otherwise."
                               (format "%s: %s"
                                       (propertize
                                        (car x)
-                                       'face 'font-lock-builtin-face)
+                                       'face 'ivy-action)
                                       (nth 2 x)))
                             (cdr actions)
                             "\n")

Reply via email to