Try to display project.el shell buffers in separate windows
Not yet working as it should, does only pop up new window when the current frame only has one window.
This commit is contained in:
parent
d80b71fb72
commit
2ea26be188
8
init.el
8
init.el
@ -366,11 +366,13 @@
|
||||
(side . right)
|
||||
(slot . 1)
|
||||
(window-width . 0.33)))
|
||||
|
||||
;; Inspired by masteringemacs
|
||||
(add-to-list 'display-buffer-alist
|
||||
'("^\\*Help\\*"
|
||||
(display-buffer-reuse-window
|
||||
display-buffer-pop-up-window)))
|
||||
|
||||
;; Inspired by masteringemacs and
|
||||
;; https://www.gnu.org/software/emacs/manual/html_node/elisp/Frame-Layouts-with-Side-Windows.html
|
||||
(add-to-list 'display-buffer-alist
|
||||
@ -386,7 +388,11 @@
|
||||
(side . bottom)
|
||||
(slot . 1)
|
||||
(window-height . 0.33)
|
||||
(window-parameters . ((no-other-window . t)))))))
|
||||
(window-parameters . ((no-other-window . t)))))
|
||||
|
||||
(add-to-list 'display-buffer-alist
|
||||
'("shell\\*"
|
||||
(display-buffer-pop-up-window)))))
|
||||
|
||||
(use-package which-key
|
||||
:ensure t
|
||||
|
||||
Loading…
Reference in New Issue
Block a user