Open karthink opened 2 years ago
The usage of switch-to-buffer in the multi-vterm command makes the initial display of vterm ignore the user's display-buffer-alist customization.
switch-to-buffer
multi-vterm
display-buffer-alist
To reproduce this, you can set:
(setq display-buffer-alist '(("^\\*vterminal.*$" display-buffer-at-bottom)))
and run M-x multi-vterm.
M-x multi-vterm
Consider replacing it with pop-to-buffer-same-window, or let-binding switch-to-buffer-obey-display-actions around the switch-to-buffer call instead?
pop-to-buffer-same-window
switch-to-buffer-obey-display-actions
The usage of
switch-to-buffer
in themulti-vterm
command makes the initial display of vterm ignore the user'sdisplay-buffer-alist
customization.To reproduce this, you can set:
and run
M-x multi-vterm
.Consider replacing it with
pop-to-buffer-same-window
, or let-bindingswitch-to-buffer-obey-display-actions
around theswitch-to-buffer
call instead?