An Emacs global minor mode allowing eshell
to use
vterm
for visual commands.
-
Make sure you have
vterm
installed -
Download
eshell-vterm
git clone https://github.com/iostapyshyn/eshell-vterm.git ~/.emacs.d/site-lisp/eshell-vterm
- Configure automatic loading for the package using your preferred method (e.g.
use-package
):
(use-package eshell-vterm
:load-path "site-lisp/eshell-vterm"
:demand t
:after eshell
:config
(eshell-vterm-mode))
- Optionally, add an alias to
eshell
to be able to run any command in visual mode:
~ $ (defalias 'eshell/v 'eshell-exec-visual) # add this to your init.el
~ $ v nethack