2017-06-08 11:47:56 +02:00
|
|
|
;;; tools/eshell/autoload/evil.el -*- lexical-binding: t; -*-
|
2017-02-19 18:53:38 -05:00
|
|
|
|
|
|
|
;;;###autoload (autoload '+eshell:run "emacs/eshell/autoload/evil" nil t)
|
2017-06-08 11:47:56 +02:00
|
|
|
(evil-define-command +eshell:run (_command bang)
|
|
|
|
;; TODO Add COMMAND support
|
2017-02-19 18:53:38 -05:00
|
|
|
(interactive "<fsh><!>")
|
|
|
|
(if bang
|
|
|
|
(+eshell/run)
|
|
|
|
(+eshell/popup)))
|
|
|
|
|