mirror of
https://github.com/doomemacs/doomemacs
synced 2025-09-06 15:13:33 -05:00
feat(vertico): use basic completion for remotes
Close: #5313 Co-authored-by: Stefan Lendl <ste.lendl@gmail.com>
This commit is contained in:
@@ -299,3 +299,13 @@ targets."
|
||||
(if keymap
|
||||
(cons '(vertico-current . embark-target) fr)
|
||||
fr))))))
|
||||
|
||||
;;;###autoload
|
||||
(defun +vertico-basic-remote-try-completion (string table pred point)
|
||||
(and (vertico--remote-p string)
|
||||
(completion-basic-try-completion string table pred point)))
|
||||
|
||||
;;;###autoload
|
||||
(defun +vertico-basic-remote-all-completions (string table pred point)
|
||||
(and (vertico--remote-p string)
|
||||
(completion-basic-all-completions string table pred point)))
|
||||
|
Reference in New Issue
Block a user