fix(pass): add vertico support

This commit is contained in:
Henrik Lissner 2021-07-28 13:08:58 -04:00
parent 9d7338d4b8
commit e0234dcab1

View file

@ -0,0 +1,19 @@
;;; tools/pass/autoload/consult.el -*- lexical-binding: t; -*-
;;;###if (featurep! :completion vertico)
;;;###autoload
(defun +pass/consult (arg pass)
"TODO"
(interactive
(list current-prefix-arg
(consult--read (password-store-list)
:prompt "Pass: "
:sort nil
:require-match t
:category 'pass)))
(funcall (if arg
#'password-store-url
#'password-store-copy)
pass))
;; TODO Add embark actions to +pass/consult