mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-01 12:17:25 -05:00
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:
@ -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)
|
||||
|
Reference in New Issue
Block a user