diff options
| author | Protesilaos Stavrou <info@protesilaos.com> | 2021-07-17 11:30:18 +0300 |
|---|---|---|
| committer | David Bremner <david@tethera.net> | 2021-08-05 08:58:30 -0300 |
| commit | c37c99126d4bf6909399d84455063e0ff0ee9b59 (patch) | |
| tree | b262a8e98fb0d03af5c2a68128b246ce022f3233 | |
| parent | c1f542d68ae843eedc2f5686203aa41dbb6a38e7 (diff) | |
emacs: Refine scope of notmuch-jump-key face
The intent of the 'notmuch-jump-key' face is to allow users/themes to
differentiate the text of the minibuffer prompt from the keys that are
associated with jump actions. Commit 5cc106b0 correctly introduced the
'notmuch-jump-key' face for keys, but mistakenly applied it to the
prompt as well.
| -rw-r--r-- | emacs/notmuch-jump.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/emacs/notmuch-jump.el b/emacs/notmuch-jump.el index e228c8a2..5ec8eb9c 100644 --- a/emacs/notmuch-jump.el +++ b/emacs/notmuch-jump.el @@ -93,7 +93,7 @@ not appear in the pop-up buffer." (buffer-string))) (full-prompt (concat table "\n\n" - (propertize prompt 'face 'notmuch-jump-key))) + (propertize prompt 'face 'minibuffer-prompt))) ;; By default, the minibuffer applies the minibuffer face to ;; the entire prompt. However, we want to clearly ;; distinguish bindings (which we put in the prompt face |
