We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a3f49f1 commit f073a96Copy full SHA for f073a96
resize-window.el
@@ -185,11 +185,10 @@ nil."
185
"Formats screen message about CHOICE.
186
CHOICE is a \(key function documentation allows-capitals\)."
187
(let ((key (resize-window--choice-keybinding choice)))
188
- (format "%s: %s " (if (resize-window--allows-capitals choice)
189
- (format "%s|%s"
190
- (string key)
191
- (string (- key 32)))
192
- (string key))
+ (concat (if (resize-window--allows-capitals choice)
+ (format "%s|%s" (string key) (string (- key 32)))
+ (format " %s " (string key)))
+ " : "
193
(resize-window--choice-documentation choice))))
194
195
(defun resize-window--get-documentation-strings ()
0 commit comments