Rudimentary ivy support for pass (#103)
This commit is contained in:
parent
2b3311faa2
commit
588858a21e
1 changed files with 13 additions and 0 deletions
13
modules/tools/password-store/autoload.el
Normal file
13
modules/tools/password-store/autoload.el
Normal 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)))
|
Loading…
Add table
Add a link
Reference in a new issue