]> git.eshelyaron.com Git - emacs.git/commitdiff
Add nvim and ncmpcpp to eshell-visual-commands
authorStefan Kangas <stefankangas@gmail.com>
Wed, 2 Aug 2023 19:57:15 +0000 (21:57 +0200)
committerStefan Kangas <stefankangas@gmail.com>
Wed, 2 Aug 2023 19:57:15 +0000 (21:57 +0200)
* lisp/eshell/em-term.el (eshell-visual-commands): Add nvim and
ncmpcpp.

lisp/eshell/em-term.el

index ab26da857b7fa6d96306628cf2c818bc8813fe75..3f76c349a7e38cf90fecc5b531740cdb2848dbe8 100644 (file)
@@ -55,10 +55,11 @@ which commands are considered visual in nature."
   :type 'hook)
 
 (defcustom eshell-visual-commands
-  '("vi" "vim"                          ; what is going on??
+  '("vi" "vim" "nvim"                   ; what is going on??
     "screen" "tmux" "top" "htop"        ; ok, a valid program...
     "less" "more"                       ; M-x view-file
     "lynx" "links" "ncftp"              ; eww, ange-ftp
+    "ncmpcpp"                           ; M-x mpc
     "mutt" "pine" "tin" "trn" "elm")    ; GNUS!!
   "A list of commands that present their output in a visual fashion.
 
@@ -66,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 "29.1")
+  :version "30.1")
 
 (defcustom eshell-visual-subcommands
   nil