mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-01 12:17:25 -05:00
- Rename module from `:completion selectrum` to `:completion vertico` - Rename all files involved - Do *not* yet rename all the functions, as that messes up git's rename detection.
15 lines
731 B
EmacsLisp
15 lines
731 B
EmacsLisp
;; completion/vertico/autoload/evil.el -*- lexical-binding: t; -*-
|
|
;;;###if (featurep! :editor evil)
|
|
|
|
;;;###autoload (autoload '+selectrum:project-search "completion/vertico/autoload/evil" nil t)
|
|
(evil-define-command +selectrum:project-search (query &optional all-files-p)
|
|
"Ex interface for `+selectrum/project-search'."
|
|
(interactive "<a><!>")
|
|
(+selectrum/project-search all-files-p query))
|
|
|
|
;;;###autoload (autoload '+selectrum:project-search-from-cwd "completion/vertico/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 "<a><!>")
|
|
(+selectrum/project-search-from-cwd (not recurse-p) query))
|