[Emacs] Add multi-vterm package
This commit is contained in:
parent
1703b07d91
commit
92e2eaeebc
@ -2865,6 +2865,23 @@ an interrupt signal.
|
|||||||
(setq vterm-shell "/usr/bin/fish"))
|
(setq vterm-shell "/usr/bin/fish"))
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
||||||
|
One annoying think with vterm is it only can create one buffer, you
|
||||||
|
can’t have multiple vterm buffers by default. ~multi-vterm~ fixes this
|
||||||
|
issue.
|
||||||
|
#+begin_src emacs-lisp
|
||||||
|
(use-package multi-vterm
|
||||||
|
:after vterm
|
||||||
|
:defer t
|
||||||
|
:straight (:build t)
|
||||||
|
:general
|
||||||
|
(phundrak/major-leader-key
|
||||||
|
:packages '(vterm multi-vterm)
|
||||||
|
:keymap 'vterm-mode-map
|
||||||
|
"c" #'multi-vterm
|
||||||
|
"n" #'multi-vterm-next
|
||||||
|
"p" #'multi-vterm-prev))
|
||||||
|
#+end_src
|
||||||
|
|
||||||
*** XWidgets Webkit Browser
|
*** XWidgets Webkit Browser
|
||||||
:PROPERTIES:
|
:PROPERTIES:
|
||||||
:CUSTOM_ID: Packages-Configuration-Applications-XWidgets-Webkit-Browsertui1fl6184j0
|
:CUSTOM_ID: Packages-Configuration-Applications-XWidgets-Webkit-Browsertui1fl6184j0
|
||||||
@ -8121,10 +8138,11 @@ Here are my apps keybinds. Each one of them is prefixed by ~a~.
|
|||||||
I also have two main shell-related functions, prefixed with ~as~.
|
I also have two main shell-related functions, prefixed with ~as~.
|
||||||
#+name: keybinds-apps-shell
|
#+name: keybinds-apps-shell
|
||||||
| Key | Function | Description |
|
| Key | Function | Description |
|
||||||
|-----+------------+-------------|
|
|-----+-------------+-------------|
|
||||||
| | | shells |
|
| | | shells |
|
||||||
| e | eshell-new | |
|
| e | eshell-new | |
|
||||||
| v | vterm | |
|
| v | vterm | |
|
||||||
|
| V | multi-vterm | |
|
||||||
|
|
||||||
** Buffers
|
** Buffers
|
||||||
:PROPERTIES:
|
:PROPERTIES:
|
||||||
|
Loading…
Reference in New Issue
Block a user