Home
Softono
eshell-vterm

eshell-vterm

Open source Emacs Lisp
47
Stars
5
Forks
0
Issues
1
Watchers
2 years
Last Commit

About eshell-vterm

Run eshell-visual-commands in Vterm

Platforms

Web Self-hosted iOS

Languages

Emacs Lisp

Links

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