emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/keycast e635c7fbe4 19/31: keycast--format: Don't pad %K


From: ELPA Syncer
Subject: [nongnu] elpa/keycast e635c7fbe4 19/31: keycast--format: Don't pad %K
Date: Sun, 9 Jan 2022 05:58:46 -0500 (EST)

branch: elpa/keycast
commit e635c7fbe4a2d07e98e4021642fa492420558d04
Author: Jonas Bernoulli <jonas@bernoul.li>
Commit: Jonas Bernoulli <jonas@bernoul.li>

    keycast--format: Don't pad %K
---
 keycast.el | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/keycast.el b/keycast.el
index b348786443..5f869a56f1 100644
--- a/keycast.el
+++ b/keycast.el
@@ -96,8 +96,8 @@ with no argument and acts on `selected-window'.
   "The format spec used by `mode-line-keycast'.
 
 %s `keycast-separator-width' spaces.
-%k The key using the `keycast-key' face.
-%K The key with no styling.
+%k The key using the `keycast-key' face and padding.
+%K The key with no styling without any padding.
 %c The command using the `keycast-command' face.
 %C The command with-no styling.
 %r The times the command was repeated."
@@ -198,7 +198,7 @@ instead."
                  format
                  `((?s . ,(make-string keycast-separator-width ?\s))
                    (?k . ,(propertize k 'face 'keycast-key))
-                   (?K . ,k)
+                   (?K . ,key)
                    (?c . ,(propertize c 'face 'keycast-command))
                    (?C . ,c)
                    (?r . ,(if (> keycast--command-repetitions 0)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]