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.
max-mini-window-lines
1 parent 6e89ad2 commit 1094e3dCopy full SHA for 1094e3d
cider-overlays.el
@@ -318,7 +318,8 @@ focused."
318
:duration cider-eval-result-duration
319
:prepend-face (or overlay-face 'cider-result-overlay-face))))
320
(msg (format "%s%s" cider-eval-result-prefix value))
321
- (max-msg-length (* (floor (max-mini-window-lines)) (frame-width)))
+ (max-msg-length (* (floor (* (frame-height) max-mini-window-height))
322
+ (frame-width)))
323
(msg (if (> (string-width msg) max-msg-length)
324
(format "%s..." (substring msg 0 (- max-msg-length 3)))
325
msg)))
0 commit comments