aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Kangas2023-08-02 21:57:15 +0200
committerStefan Kangas2023-08-02 21:57:15 +0200
commitdbd3c030bb90a38d4d5aed5e13f8d698f7960321 (patch)
treef08b25fa4203cdaaa7d796db8aacdd03c6df98b6
parent0bcea805e6fd3c6d00366c56acd822898bb8389f (diff)
downloademacs-dbd3c030bb90a38d4d5aed5e13f8d698f7960321.tar.gz
emacs-dbd3c030bb90a38d4d5aed5e13f8d698f7960321.zip
Add nvim and ncmpcpp to eshell-visual-commands
* lisp/eshell/em-term.el (eshell-visual-commands): Add nvim and ncmpcpp.
-rw-r--r--lisp/eshell/em-term.el5
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/eshell/em-term.el b/lisp/eshell/em-term.el
index ab26da857b7..3f76c349a7e 100644
--- a/lisp/eshell/em-term.el
+++ b/lisp/eshell/em-term.el
@@ -55,10 +55,11 @@ which commands are considered visual in nature."
55 :type 'hook) 55 :type 'hook)
56 56
57(defcustom eshell-visual-commands 57(defcustom eshell-visual-commands
58 '("vi" "vim" ; what is going on?? 58 '("vi" "vim" "nvim" ; what is going on??
59 "screen" "tmux" "top" "htop" ; ok, a valid program... 59 "screen" "tmux" "top" "htop" ; ok, a valid program...
60 "less" "more" ; M-x view-file 60 "less" "more" ; M-x view-file
61 "lynx" "links" "ncftp" ; eww, ange-ftp 61 "lynx" "links" "ncftp" ; eww, ange-ftp
62 "ncmpcpp" ; M-x mpc
62 "mutt" "pine" "tin" "trn" "elm") ; GNUS!! 63 "mutt" "pine" "tin" "trn" "elm") ; GNUS!!
63 "A list of commands that present their output in a visual fashion. 64 "A list of commands that present their output in a visual fashion.
64 65
@@ -66,7 +67,7 @@ Commands listed here are run in a term buffer.
66 67
67See also `eshell-visual-subcommands' and `eshell-visual-options'." 68See also `eshell-visual-subcommands' and `eshell-visual-options'."
68 :type '(repeat string) 69 :type '(repeat string)
69 :version "29.1") 70 :version "30.1")
70 71
71(defcustom eshell-visual-subcommands 72(defcustom eshell-visual-subcommands
72 nil 73 nil