multi-vterm
multi-vterm copied to clipboard
Managing multiple vterm buffers in Emacs
I am trying to get the title (as defined by the shell) to appear in my buffer names. vterm will replace `%s` by the title when `vterm-buffer-name-string` is non-nil, as...
https://github.com/akermu/emacs-libvterm#vterm-buffer-name-string Since `multi-vterm-project` looks for the buffer by name, setting `vterm-buffer-name-string` to `"%s"` will break its ability to toggle the buffer. Instead it creates a new buffer each time.
Let's you specify the dedicated terminal height in percent instead of a fix number of rows. Useful if you deal with different monitor sizes.
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. To reproduce this, you can set: ```elisp (setq display-buffer-alist '(("^\\*vterminal.*$" display-buffer-at-bottom)))...
Hello, Thanks for the package. When I started using it I noticed that the windows from the vterm buffers didn't respect the customizations that I wanted to put in `display-buffer-alist`,...
Howdy, When I am using multi-vterm with several vterminal buffers and trying to switch to next / priv one I get error message `Attemp to disply deleted buffer` even I...
thanks for working on this package. I have this itch with `multi-vterm-dedicated-toggle`, I would like to open additional terms on the same dedicated window akin to opening term tabs in...
The error occurs when the multi-vterm-current-window-height is equal to the multi-vterm-selected-window-height. ```lisp (defun multi-vterm-dedicated-get-window () (setq multi-vterm-dedicated-window (split-window (selected-window) (- (multi-vterm-current-window-height) multi-vterm-dedicated-window-height)))) ``` which is defined ```lisp (defcustom multi-vterm-dedicated-window-height 30...
Fixes #6
Since the last update was merged, I am no longer able to provide a buffer name to the `multi-libvterm` function. Looks like the argument was removed? EDIT: Not really sure...