Remove :underline from 'which-key-highlighted-command-face '

* lisp/which-key.el (which-key-highlighted-command-face): To
avoid using properties that might not be supported on all
displays, we instead inherit from the semantic face 'highlight'.
This commit is contained in:
Philip Kaludercic 2024-06-18 10:42:12 +02:00
parent b0b7df823b
commit 543ad34ee4
No known key found for this signature in database

View file

@ -595,9 +595,9 @@ it."
:package-version "1.0" :version "30.1")
(defface which-key-highlighted-command-face
'((t . (:inherit which-key-command-description-face :underline t)))
"Default face for command description.
To be highlighted, it must be a command and match a string in
'((t . (:inherit (which-key-command-description-face highlight))))
"Default face for highlighted command descriptions.
A command is highlighted, when it matches a string in
`which-key-highlighted-command-list'."
:group 'which-key-faces
:package-version "1.0" :version "30.1")