From e04bdc70d7819e5077b751176f04319d8587946c Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Wed, 27 Sep 2017 14:48:16 +0200 Subject: [PATCH] tools/eshell: fix +eshell:run --- modules/tools/eshell/autoload/evil.el | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/modules/tools/eshell/autoload/evil.el b/modules/tools/eshell/autoload/evil.el index 19c180db6..5ef5f8ee0 100644 --- a/modules/tools/eshell/autoload/evil.el +++ b/modules/tools/eshell/autoload/evil.el @@ -1,10 +1,10 @@ ;;; 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) +;;;###autoload (autoload '+eshell:run "tools/eshell/autoload/evil" nil t) +(evil-define-command +eshell:run (command bang) ;; TODO Add COMMAND support (interactive "") (if bang - (+eshell/run) - (+eshell/open-popup))) + (+eshell/open command) + (+eshell/open-popup command)))