Restore synchronize keybinding in pass mode

This commit is contained in:
Jeremy Dormitzer 2019-12-18 13:59:04 -05:00
parent eea5382d3f
commit e6ec9d57c8

View File

@ -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