From e6ec9d57c8ccd48239a5e88b24120ef0b7517f2d Mon Sep 17 00:00:00 2001 From: Jeremy Dormitzer Date: Wed, 18 Dec 2019 13:59:04 -0500 Subject: [PATCH] Restore synchronize keybinding in pass mode --- emacs/init.org | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/emacs/init.org b/emacs/init.org index 2d7bd50..cef1acb 100755 --- a/emacs/init.org +++ b/emacs/init.org @@ -174,7 +174,9 @@ Use the spacebar as a leader key in evil-mode's normal state and in various othe (with-eval-after-load 'magit (add-hook 'magit-mode-hook 'turn-off-evil-snipe-override-mode)) (with-eval-after-load 'prodigy - (add-hook 'prodigy-mode-hook 'turn-off-evil-snipe-mode))) + (add-hook 'prodigy-mode-hook 'turn-off-evil-snipe-mode)) + (with-eval-after-load 'pass + (add-hook 'pass-mode-hook 'turn-off-evil-snipe-mode))) #+END_SRC ** Additional keybindings #+BEGIN_SRC emacs-lisp @@ -261,7 +263,7 @@ Interfacing with Pass, the "standard Unix password manager". This should also be :if (executable-find "pass") :commands pass :general - (pass-mode-map "S" #'password-store-synchronize)) + ('(normal motion visual) pass-mode-map "S" #'password-store-synchronize)) (leader-def-key "ap" #'pass) #+END_SRC