/eshell-vterm

Run eshell-visual-commands in Vterm

Primary LanguageEmacs LispGNU General Public License v3.0GPL-3.0

MELPA

eshell-vterm

An Emacs global minor mode allowing eshell to use vterm for visual commands.

Installation

  1. Make sure you have vterm installed

  2. Download eshell-vterm

git clone https://github.com/iostapyshyn/eshell-vterm.git ~/.emacs.d/site-lisp/eshell-vterm
  1. 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))
  1. 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