From 750f45328a858e172797ef6810a7cbc4aab5c9d1 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Tue, 2 Jul 2019 17:45:09 +0200 Subject: [PATCH] Mark helm/ivy search engine autoloads interactive Otherwise they don't show up in M-x --- modules/completion/helm/autoload/helm.el | 16 ++++++++-------- modules/completion/ivy/autoload/ivy.el | 16 ++++++++-------- 2 files changed, 16 insertions(+), 16 deletions(-) diff --git a/modules/completion/helm/autoload/helm.el b/modules/completion/helm/autoload/helm.el index f8d264a93..4b73feaf3 100644 --- a/modules/completion/helm/autoload/helm.el +++ b/modules/completion/helm/autoload/helm.el @@ -204,14 +204,14 @@ ARG (universal argument), include all files, even hidden or compressed ones." initial-query)) -;;;###autoload (autoload '+helm/rg "completion/helm/autoload/helm") -;;;###autoload (autoload '+helm/rg-from-cwd "completion/helm/autoload/helm") -;;;###autoload (autoload '+helm/ag "completion/helm/autoload/helm") -;;;###autoload (autoload '+helm/ag-from-cwd "completion/helm/autoload/helm") -;;;###autoload (autoload '+helm/pt "completion/helm/autoload/helm") -;;;###autoload (autoload '+helm/pt-from-cwd "completion/helm/autoload/helm") -;;;###autoload (autoload '+helm/grep "completion/helm/autoload/helm") -;;;###autoload (autoload '+helm/grep-from-cwd "completion/helm/autoload/helm") +;;;###autoload (autoload '+helm/rg "completion/helm/autoload/helm" nil t) +;;;###autoload (autoload '+helm/rg-from-cwd "completion/helm/autoload/helm" nil t) +;;;###autoload (autoload '+helm/ag "completion/helm/autoload/helm" nil t) +;;;###autoload (autoload '+helm/ag-from-cwd "completion/helm/autoload/helm" nil t) +;;;###autoload (autoload '+helm/pt "completion/helm/autoload/helm" nil t) +;;;###autoload (autoload '+helm/pt-from-cwd "completion/helm/autoload/helm" nil t) +;;;###autoload (autoload '+helm/grep "completion/helm/autoload/helm" nil t) +;;;###autoload (autoload '+helm/grep-from-cwd "completion/helm/autoload/helm" nil t) (dolist (engine `(,@(cl-remove-duplicates +helm-project-search-engines :from-end t) grep)) (defalias (intern (format "+helm/%s" engine)) diff --git a/modules/completion/ivy/autoload/ivy.el b/modules/completion/ivy/autoload/ivy.el index ab439eef4..05d1b65c8 100644 --- a/modules/completion/ivy/autoload/ivy.el +++ b/modules/completion/ivy/autoload/ivy.el @@ -447,14 +447,14 @@ ARG (universal argument), include all files, even hidden or compressed ones." initial-query)) -;;;###autoload (autoload '+ivy/rg "completion/ivy/autoload/ivy") -;;;###autoload (autoload '+ivy/rg-from-cwd "completion/ivy/autoload/ivy") -;;;###autoload (autoload '+ivy/ag "completion/ivy/autoload/ivy") -;;;###autoload (autoload '+ivy/ag-from-cwd "completion/ivy/autoload/ivy") -;;;###autoload (autoload '+ivy/pt "completion/ivy/autoload/ivy") -;;;###autoload (autoload '+ivy/pt-from-cwd "completion/ivy/autoload/ivy") -;;;###autoload (autoload '+ivy/grep "completion/ivy/autoload/ivy") -;;;###autoload (autoload '+ivy/grep-from-cwd "completion/ivy/autoload/ivy") +;;;###autoload (autoload '+ivy/rg "completion/ivy/autoload/ivy" nil t) +;;;###autoload (autoload '+ivy/rg-from-cwd "completion/ivy/autoload/ivy" nil t) +;;;###autoload (autoload '+ivy/ag "completion/ivy/autoload/ivy" nil t) +;;;###autoload (autoload '+ivy/ag-from-cwd "completion/ivy/autoload/ivy" nil t) +;;;###autoload (autoload '+ivy/pt "completion/ivy/autoload/ivy" nil t) +;;;###autoload (autoload '+ivy/pt-from-cwd "completion/ivy/autoload/ivy" nil t) +;;;###autoload (autoload '+ivy/grep "completion/ivy/autoload/ivy" nil t) +;;;###autoload (autoload '+ivy/grep-from-cwd "completion/ivy/autoload/ivy" nil t) (dolist (engine `(,@(cl-remove-duplicates +ivy-project-search-engines :from-end t) grep)) (defalias (intern (format "+ivy/%s" engine))