; Refine 'completion-preview-exact' face

* lisp/completion-preview.el (completion-preview-exact): Use
different underline color to further distinguish this face from
'completion-preview-common', and improve legibility with dark
background color.
This commit is contained in:
Eshel Yaron 2024-04-27 20:39:19 +02:00
parent fda9ecc150
commit 6d856acf17
No known key found for this signature in database
GPG key ID: EF3EE9CA35D78618

View file

@ -129,7 +129,7 @@ If this option is nil, these commands do not display any message."
(defface completion-preview-exact
;; An exact match is also the longest common prefix of all matches.
'((t :underline "gray25" :inherit completion-preview-common))
'((t :underline "#00aa00" :inherit completion-preview-common))
"Face for matches in the completion preview overlay."
:version "30.1")