summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Kangas <stefan@marxist.se>2022-06-30 14:58:11 +0200
committerStefan Kangas <stefan@marxist.se>2022-06-30 15:03:46 +0200
commitf819882edcb3724823a962d16863be3f5a76d634 (patch)
tree84a132738a1ef9fda14485190999bfb4b2c184bf
parenta6a92b8e4df551af113fcba5304457168b487cfa (diff)
downloademacs-f819882edcb3724823a962d16863be3f5a76d634.tar.gz
* lisp/eshell/em-term.el (eshell-visual-commands): Add vim.
-rw-r--r--lisp/eshell/em-term.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/eshell/em-term.el b/lisp/eshell/em-term.el
index 9000e8c8784..a4fa699aa90 100644
--- a/lisp/eshell/em-term.el
+++ b/lisp/eshell/em-term.el
@@ -56,7 +56,7 @@ which commands are considered visual in nature."
:type 'hook)
(defcustom eshell-visual-commands
- '("vi" ; what is going on??
+ '("vi" "vim" ; what is going on??
"screen" "tmux" "top" "htop" ; ok, a valid program...
"less" "more" ; M-x view-file
"lynx" "links" "ncftp" ; eww, ange-ftp
@@ -67,7 +67,7 @@ Commands listed here are run in a term buffer.
See also `eshell-visual-subcommands' and `eshell-visual-options'."
:type '(repeat string)
- :version "27.1")
+ :version "29.1")
(defcustom eshell-visual-subcommands
nil