Henrik Lissner 2022-03-30 17:18:46 +02:00
parent d58d084774
commit 0e802f4653
No known key found for this signature in database
GPG key ID: B60957CA074D39A3
6 changed files with 24 additions and 14 deletions

View file

@ -274,3 +274,13 @@ If there are selected candidates, disregard the current candidate and exit."
(defun +vertico-basic-remote-all-completions (string table pred point)
(and (vertico--remote-p string)
(completion-basic-all-completions string table pred point)))
;;;###autoload
(defun +vertico/resume (&optional arg)
"Resume the last session.
If prefix ARG is provided, select which session to resume."
(interactive "P")
(call-interactively
(if arg
#'vertico-resume-select
#'vertico-resume-last)))