mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-03 12:27:26 -05:00
fix: tooltip-resize-echo-area = t
Since we disable tooltip-mode, the echo-area should expand to display multi-line output, to be consistent with our default for resize-mini-windows. This also fixes the truncation of annotations in PDF buffers (#1615). Fix: #1615
This commit is contained in:
@ -343,7 +343,8 @@ windows, switch to `doom-fallback-buffer'. Otherwise, delegate to original
|
|||||||
|
|
||||||
;; Expand the minibuffer to fit multi-line text displayed in the echo-area. This
|
;; Expand the minibuffer to fit multi-line text displayed in the echo-area. This
|
||||||
;; doesn't look too great with direnv, however...
|
;; doesn't look too great with direnv, however...
|
||||||
(setq resize-mini-windows 'grow-only)
|
(setq resize-mini-windows 'grow-only
|
||||||
|
tooltip-resize-echo-area t)
|
||||||
|
|
||||||
;; Typing yes/no is obnoxious when y/n will do
|
;; Typing yes/no is obnoxious when y/n will do
|
||||||
(if (boundp 'use-short-answers)
|
(if (boundp 'use-short-answers)
|
||||||
|
Reference in New Issue
Block a user