+ Change default name for (doom) eshell buffers + Fix eshell splitting commands (referring to incorrect subcommand) + Correct aliases (using wrong commands) + +eshell/run => +eshell/open + +eshell/popup => +eshell/open-popup + +eshell/tab => +eshell/open-workspace + +eshell/prompt => +eshell-prompt (conform to naming convention)
10 lines
302 B
EmacsLisp
10 lines
302 B
EmacsLisp
;;; tools/eshell/autoload/evil.el -*- lexical-binding: t; -*-
|
|
|
|
;;;###autoload (autoload '+eshell:run "emacs/eshell/autoload/evil" nil t)
|
|
(evil-define-command +eshell:run (_command bang)
|
|
;; TODO Add COMMAND support
|
|
(interactive "<fsh><!>")
|
|
(if bang
|
|
(+eshell/run)
|
|
(+eshell/open-popup)))
|
|
|