From ded6526eeecc57bcf8199884e3a0eafd85ca7785 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Thu, 17 May 2018 17:00:20 +0200 Subject: [PATCH] completion/ivy: fix void-variable error in +ivy:{pt,grep} --- modules/completion/ivy/autoload/evil.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/completion/ivy/autoload/evil.el b/modules/completion/ivy/autoload/evil.el index 1135d3ec0..b60b28d31 100644 --- a/modules/completion/ivy/autoload/evil.el +++ b/modules/completion/ivy/autoload/evil.el @@ -20,13 +20,13 @@ (evil-define-command +ivy:pt (all-files-p query) "Ex interface for `+ivy/pt'" (interactive "") - (+ivy/pt all-files-p query directory)) + (+ivy/pt all-files-p query)) ;;;###autoload (autoload '+ivy:grep "completion/ivy/autoload/evil" nil t) (evil-define-command +ivy:grep (all-files-p query) "Ex interface for `+ivy/grep'" (interactive "") - (+ivy/grep all-files-p query directory)) + (+ivy/grep all-files-p query)) ;;;###autoload (autoload '+ivy:ag "completion/ivy/autoload/evil" nil t) (evil-define-command +ivy:ag (all-files-p query)