doomemacs/modules/tools/eshell/autoload/evil.el
Henrik Lissner 0479ac3b88
tools/eshell: bugfix + minor refactor
+ 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)
2017-09-27 14:48:23 +02:00

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)))