Merge pull request #488 from orther/cleanup-auth-source-pass

Update password-store +auth to only use auth-source-pass
This commit is contained in:
Henrik Lissner 2018-03-28 01:11:07 -04:00 committed by GitHub
commit 05d4386409
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 7 additions and 9 deletions

View file

@ -12,9 +12,7 @@
;;;###autoload
(defalias '+pass--get-entry
(if (featurep 'auth-store-pass)
#'auth-source-pass-parse-entry
#'auth-pass-parse-entry))
#'auth-source-pass-parse-entry)
;;;###autoload
(defun +pass-get-field (entry fields)

View file

@ -36,8 +36,6 @@
;; Is built into Emacs 26+
(when (featurep! +auth)
(if (require 'auth-store-pass nil t)
(auth-source-pass-enable)
(def-package! auth-source-store
:config (auth-source-pass-enable))))
(def-package! auth-source-pass
:when (featurep! +auth)
:config (auth-source-pass-enable))

View file

@ -3,7 +3,9 @@
(package! pass)
(package! password-store)
(package! auth-source-pass)
(when (featurep! +auth)
(package! auth-source-pass))
(when (featurep! :completion helm)
(package! helm-pass))