Mark helm/ivy search engine autoloads interactive

Otherwise they don't show up in M-x
This commit is contained in:
Henrik Lissner 2019-07-02 17:45:09 +02:00
parent f0228fbc7a
commit 750f45328a
No known key found for this signature in database
GPG key ID: 5F6C0EA160557395
2 changed files with 16 additions and 16 deletions

View file

@ -204,14 +204,14 @@ ARG (universal argument), include all files, even hidden or compressed ones."
initial-query)) initial-query))
;;;###autoload (autoload '+helm/rg "completion/helm/autoload/helm") ;;;###autoload (autoload '+helm/rg "completion/helm/autoload/helm" nil t)
;;;###autoload (autoload '+helm/rg-from-cwd "completion/helm/autoload/helm") ;;;###autoload (autoload '+helm/rg-from-cwd "completion/helm/autoload/helm" nil t)
;;;###autoload (autoload '+helm/ag "completion/helm/autoload/helm") ;;;###autoload (autoload '+helm/ag "completion/helm/autoload/helm" nil t)
;;;###autoload (autoload '+helm/ag-from-cwd "completion/helm/autoload/helm") ;;;###autoload (autoload '+helm/ag-from-cwd "completion/helm/autoload/helm" nil t)
;;;###autoload (autoload '+helm/pt "completion/helm/autoload/helm") ;;;###autoload (autoload '+helm/pt "completion/helm/autoload/helm" nil t)
;;;###autoload (autoload '+helm/pt-from-cwd "completion/helm/autoload/helm") ;;;###autoload (autoload '+helm/pt-from-cwd "completion/helm/autoload/helm" nil t)
;;;###autoload (autoload '+helm/grep "completion/helm/autoload/helm") ;;;###autoload (autoload '+helm/grep "completion/helm/autoload/helm" nil t)
;;;###autoload (autoload '+helm/grep-from-cwd "completion/helm/autoload/helm") ;;;###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)) (dolist (engine `(,@(cl-remove-duplicates +helm-project-search-engines :from-end t) grep))
(defalias (intern (format "+helm/%s" engine)) (defalias (intern (format "+helm/%s" engine))

View file

@ -447,14 +447,14 @@ ARG (universal argument), include all files, even hidden or compressed ones."
initial-query)) initial-query))
;;;###autoload (autoload '+ivy/rg "completion/ivy/autoload/ivy") ;;;###autoload (autoload '+ivy/rg "completion/ivy/autoload/ivy" nil t)
;;;###autoload (autoload '+ivy/rg-from-cwd "completion/ivy/autoload/ivy") ;;;###autoload (autoload '+ivy/rg-from-cwd "completion/ivy/autoload/ivy" nil t)
;;;###autoload (autoload '+ivy/ag "completion/ivy/autoload/ivy") ;;;###autoload (autoload '+ivy/ag "completion/ivy/autoload/ivy" nil t)
;;;###autoload (autoload '+ivy/ag-from-cwd "completion/ivy/autoload/ivy") ;;;###autoload (autoload '+ivy/ag-from-cwd "completion/ivy/autoload/ivy" nil t)
;;;###autoload (autoload '+ivy/pt "completion/ivy/autoload/ivy") ;;;###autoload (autoload '+ivy/pt "completion/ivy/autoload/ivy" nil t)
;;;###autoload (autoload '+ivy/pt-from-cwd "completion/ivy/autoload/ivy") ;;;###autoload (autoload '+ivy/pt-from-cwd "completion/ivy/autoload/ivy" nil t)
;;;###autoload (autoload '+ivy/grep "completion/ivy/autoload/ivy") ;;;###autoload (autoload '+ivy/grep "completion/ivy/autoload/ivy" nil t)
;;;###autoload (autoload '+ivy/grep-from-cwd "completion/ivy/autoload/ivy") ;;;###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)) (dolist (engine `(,@(cl-remove-duplicates +ivy-project-search-engines :from-end t) grep))
(defalias (intern (format "+ivy/%s" engine)) (defalias (intern (format "+ivy/%s" engine))