From fa527c00e86d6bbb4b5522e57a42bb253376d27f Mon Sep 17 00:00:00 2001 From: "Itai Y. Efrat" Date: Mon, 3 May 2021 11:13:28 +0300 Subject: [PATCH] selectrum: fix project search evil command autoloads --- modules/completion/selectrum/autoload/evil.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/completion/selectrum/autoload/evil.el b/modules/completion/selectrum/autoload/evil.el index 048444458..2f9b0e20c 100644 --- a/modules/completion/selectrum/autoload/evil.el +++ b/modules/completion/selectrum/autoload/evil.el @@ -1,13 +1,13 @@ ;; completion/selectrum/autoload/evil.el -*- lexical-binding: t; -*- ;;;###if (featurep! :editor evil) -;;;###autoload (autoload '+selectrum:project-search "completion/ivy/autoload/evil" nil t) +;;;###autoload (autoload '+selectrum:project-search "completion/selectrum/autoload/evil" nil t) (evil-define-command +selectrum:project-search (query &optional all-files-p) "Ex interface for `+selectrum/project-search'." (interactive "") (+selectrum/project-search all-files-p query)) -;;;###autoload (autoload '+selectrum:project-search-from-cwd "completion/ivy/autoload/evil" nil t) +;;;###autoload (autoload '+selectrum:project-search-from-cwd "completion/selectrum/autoload/evil" nil t) (evil-define-command +selectrum:project-search-from-cwd (query &optional recurse-p) "Ex interface for `+selectrum/project-search-from-cwd'." (interactive "")