mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-03 12:27:26 -05:00
lang/emacs-lisp: don't resize non-output windows
This commit is contained in:
@ -18,7 +18,8 @@ to a pop up buffer."
|
|||||||
temp-buffer-show-hook)))
|
temp-buffer-show-hook)))
|
||||||
(pp-eval-expression
|
(pp-eval-expression
|
||||||
(read (buffer-substring-no-properties beg end)))
|
(read (buffer-substring-no-properties beg end)))
|
||||||
(fit-window-to-buffer (get-buffer-window "*Pp Eval Output*"))))
|
(when-let (win (get-buffer-window "*Pp Eval Output*"))
|
||||||
|
(fit-window-to-buffer win))))
|
||||||
|
|
||||||
(defvar +emacs-lisp--face nil)
|
(defvar +emacs-lisp--face nil)
|
||||||
;;;###autoload
|
;;;###autoload
|
||||||
|
Reference in New Issue
Block a user