spacemacs/layers/+tools/pass/funcs.el
Kepi 8c230bfbb1 Pass: support for ivy and fix undefined dostpacemacs-use-ido
Looks like pass is trying to use variable which isn't available for some time,
at least there are no other packages using it.

`completing-read` should be universal for all completing needs I hope.
2017-05-28 16:17:45 +02:00

27 lines
979 B
EmacsLisp

;;; funcs.el -- Passwords Layer functions File for Spacemacs
;;
;; Copyright (c) 2012-2017 Sylvain Benner & Contributors
;;
;; Author: Andrew Oppenlander <andrew.oppenlander@gmail.com>
;; URL: https://github.com/syl20bnr/spacemacs
;;
;; This file is not part of GNU Emacs.
;;
;;; License: GPLv3
(defun spacemacs//pass-completing-read ()
"Read a password entry in the minibuffer, with completion."
(completing-read "Password entry: " (password-store-list)))
(defun spacemacs/pass-copy-and-describe (entry)
"Copy the password to the clipboard, and show the multiline description for ENTRY"
(interactive (list (spacemacs//pass-completing-read)))
(password-store-copy entry)
(spacemacs/pass-describe entry))
(defun spacemacs/pass-describe (entry)
"Show the multiline description for ENTRY"
(interactive (list (spacemacs//pass-completing-read)))
(let ((description (s-join "\n" (cdr (s-lines (password-store--run-show entry))))))
(message "%s" description)))