featurep! will be renamed modulep! in the future, so it's been deprecated. They have identical interfaces, and can be replaced without issue. featurep! was never quite the right name for this macro. It implied that it had some connection to featurep, which it doesn't (only that it was similar in purpose; still, Doom modules are not features). To undo such implications and be consistent with its namespace (and since we're heading into a storm of breaking changes with the v3 release anyway), now was the best opportunity to begin the transition.
14 lines
714 B
EmacsLisp
14 lines
714 B
EmacsLisp
;; completion/vertico/autoload/evil.el -*- lexical-binding: t; -*-
|
|
;;;###if (modulep! :editor evil)
|
|
|
|
;;;###autoload (autoload '+vertico:project-search "completion/vertico/autoload/evil" nil t)
|
|
(evil-define-command +vertico:project-search (query &optional all-files-p)
|
|
"Ex interface for `+vertico/project-search'."
|
|
(interactive "<a><!>")
|
|
(+vertico/project-search all-files-p query))
|
|
|
|
;;;###autoload (autoload '+vertico:project-search-from-cwd "completion/vertico/autoload/evil" nil t)
|
|
(evil-define-command +vertico:project-search-from-cwd (query &optional recurse-p)
|
|
"Ex interface for `+vertico/project-search-from-cwd'."
|
|
(interactive "<a><!>")
|
|
(+vertico/project-search-from-cwd (not recurse-p) query))
|