bug-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#34169: 27.0.50; Display-buffer function to use whole frame


From: Alex Branham
Subject: bug#34169: 27.0.50; Display-buffer function to use whole frame
Date: Tue, 22 Jan 2019 15:29:53 -0600
User-agent: mu4e 1.1.0; emacs 27.0.50

It would be nice if Emacs's display-buffer routine had some way to
display the buffer in the current frame and delete the other windows. I
found `magit--display-buffer-fullframe' which seems to do what I want.
Can something like this be added to window.el?

Thanks,
Alex

(defun magit--display-buffer-fullframe (buffer alist)
  (when-let ((window (or (display-buffer-reuse-window buffer alist)
                         (display-buffer-same-window buffer alist)
                         (display-buffer-pop-up-window buffer alist)
                         (display-buffer-use-some-window buffer alist))))
    (delete-other-windows window)
    window))





reply via email to

[Prev in Thread] Current Thread [Next in Thread]