From 2d685d736e0ba3a4964cf2822542b4e412f4488c Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Sun, 9 Sep 2018 13:44:12 -0400 Subject: [PATCH] completion/ivy: fix +helm--get-command references Bad copypasta! --- modules/completion/ivy/autoload/ivy.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/completion/ivy/autoload/ivy.el b/modules/completion/ivy/autoload/ivy.el index b0789b78c..51ed26a15 100644 --- a/modules/completion/ivy/autoload/ivy.el +++ b/modules/completion/ivy/autoload/ivy.el @@ -314,7 +314,7 @@ Uses the first available search backend from `+ivy-project-search-engines'. If ALL-FILES-P (universal argument), include all files, even hidden or compressed ones, in the search." (interactive "P") - (funcall (or (+helm--get-command "+ivy/%s") + (funcall (or (+ivy--get-command "+ivy/%s") #'+ivy/grep) (or all-files-p current-prefix-arg))) @@ -326,7 +326,7 @@ Uses the first available search backend from `+ivy-project-search-engines'. If ALL-FILES-P (universal argument), include all files, even hidden or compressed ones." (interactive "P") - (funcall (or (+helm--get-command "+ivy/%s-from-cwd") + (funcall (or (+ivy--get-command "+ivy/%s-from-cwd") #'+ivy/grep-from-cwd) (or all-files-p current-prefix-arg)))