From 2ef1bebc09676652daaaab9b14e11f79067439ed Mon Sep 17 00:00:00 2001 From: Daniel Mendler Date: Wed, 28 Apr 2021 19:48:33 +0200 Subject: Use italic face for "No match" message --- README.org | 2 +- corfu.el | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.org b/README.org index 1218f53..ff30112 100644 --- a/README.org +++ b/README.org @@ -10,7 +10,7 @@ Corfu enhances the default completion in region function with a completion overlay. The current candidates are shown in a popup below or above the point. -Corfu can be considered the minimalistic completion-in-region counterpart of the +Corfu can be considered the minimalistic ~completion-in-region~ counterpart of the [[https://github.com/minad/vertico][Vertico]] minibuffer UI. Icomplete implements both completion-in-region and minibuffer completion in a diff --git a/corfu.el b/corfu.el index cb85ba5..eccc628 100644 --- a/corfu.el +++ b/corfu.el @@ -56,7 +56,7 @@ "Enable cycling for `corfu-next' and `corfu-previous'." :type 'boolean) -(defcustom corfu-confirm "(No match)" +(defcustom corfu-confirm (propertize "No match" 'face 'italic) "Show this confirmation string if there is no match. Set to nil in order to disable confirmation." :type '(choice (const nil) string)) @@ -76,7 +76,7 @@ Set to nil in order to disable confirmation." (((class color) (min-colors 88) (background light)) :background "#ffe" :inherit default) (t :background "gray" :foreground "black" :inherit default)) - "Face used to for the overlay background.") + "Face used to for the popup background.") (defface corfu-current '((((class color) (min-colors 88) (background dark)) -- cgit v1.0