2021-04-29 21:46:48 +03:00
|
|
|
;; completion/selectrum/autoload/evil.el -*- lexical-binding: t; -*-
|
|
|
|
;;;###if (featurep! :editor evil)
|
|
|
|
|
2021-05-03 11:13:28 +03:00
|
|
|
;;;###autoload (autoload '+selectrum:project-search "completion/selectrum/autoload/evil" nil t)
|
2021-04-29 21:46:48 +03:00
|
|
|
(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))
|
|
|
|
|
2021-05-03 11:13:28 +03:00
|
|
|
;;;###autoload (autoload '+selectrum:project-search-from-cwd "completion/selectrum/autoload/evil" nil t)
|
2021-04-29 21:46:48 +03:00
|
|
|
(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))
|