completion/selectrum -> completion/vertico, part 3

- Rename all functions and variables in the module to reflect the
  namechange (and the irc jump function)
This commit is contained in:
Itai Y. Efrat 2021-07-09 20:28:40 +03:00
parent 24eaa1317c
commit a0eb4e9b65
13 changed files with 55 additions and 55 deletions

View file

@ -234,7 +234,7 @@ This backend prefers \"just working\" over accuracy."
(defun +lookup-project-search-backend-fn (identifier)
"Conducts a simple project text search for IDENTIFIER.
Uses and requires `+ivy-file-search', `+helm-file-search', or `+selectrum-file-search'.
Uses and requires `+ivy-file-search', `+helm-file-search', or `+vertico-file-search'.
Will return nil if neither is available. These require ripgrep to be installed."
(unless identifier
(let ((query (rxt-quote-pcre identifier)))
@ -246,7 +246,7 @@ Will return nil if neither is available. These require ripgrep to be installed."
(+helm-file-search :query query)
t)
((featurep! :completion vertico)
(+selectrum-file-search :query query)
(+vertico-file-search :query query)
t))))))
(defun +lookup-evil-goto-definition-backend-fn (_identifier)