mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-03 12:27:26 -05:00
Rudimentary ivy support for pass (#103)
This commit is contained in:
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)))
|
Reference in New Issue
Block a user