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 e0190c4 commit b0b7df8Copy full SHA for b0b7df8
lisp/which-key.el
@@ -2251,13 +2251,13 @@ prefix, and a page count."
2251
(format
2252
(concat "%-" (int-to-string first-col-width) "s")
2253
page-cnt)
2254
- (make-string first-col-width 32)))
+ (make-string first-col-width ?\s)))
2255
lines first-line new-end)
2256
(if (= 1 height)
2257
(cons (concat prefix page) nil)
2258
(setq lines (split-string page "\n")
2259
first-line (concat prefix (car lines) "\n" page-cnt)
2260
- new-end (concat "\n" (make-string first-col-width 32)))
+ new-end (concat "\n" (make-string first-col-width ?\s)))
2261
(cons
2262
(concat first-line (mapconcat #'identity (cdr lines) new-end))
2263
nil))))
0 commit comments