Rudimentary ivy support for pass (#103)

This commit is contained in:
Henrik Lissner 2017-06-11 16:41:18 +02:00
parent 2b3311faa2
commit 588858a21e
No known key found for this signature in database
GPG key ID: 5F6C0EA160557395

View file

@ -0,0 +1,13 @@
;;; tools/password-store/autoload.el -*- lexical-binding: t; -*-
;;;###autoload
(defun +pass/find ()
(interactive)
(let ((default-directory (expand-file-name "~/.password-store")))
(call-interactively #'projectile-find-file)))
;;;###autoload
(defun +pass/browse ()
(interactive)
(let ((default-directory (expand-file-name "~/.password-store")))
(call-interactively #'find-file)))