Home
Softono

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

Need Help Installing Eshell Vterm?

We provide expert installation service for this software. Our team will install, configure, and secure Eshell Vterm on your server. plans start at just $30.

Eshell Vterm

View on GitHub

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