mu4e-conversation: Add scroll bindings

This commit is contained in:
Pierre Neidhardt 2018-06-24 18:03:04 +02:00
parent 142a2e3f50
commit 0a7a457dcb
1 changed files with 4 additions and 0 deletions

View File

@ -38,6 +38,8 @@
(defun evil-collection-mu4e-conversation-setup ()
"Set up `evil' bindings for `mu4e-conversation'."
(evil-define-key 'normal mu4e-conversation-linear-map
" " 'evil-scroll-page-down
(kbd "S-SPC") 'evil-scroll-page-up
"zv" 'mu4e-conversation-toggle-view)
(evil-define-key 'visual mu4e-conversation-linear-map
(kbd "<return>") 'mu4e-conversation-cite)
@ -50,6 +52,8 @@
"]" 'mu4e-conversation-next-message
"q" 'mu4e-conversation-quit)
(evil-define-key 'normal mu4e-conversation-tree-map
" " 'evil-scroll-page-down
(kbd "S-SPC") 'evil-scroll-page-up
"zv" 'mu4e-conversation-toggle-view)
(evil-define-key 'visual mu4e-conversation-tree-map
(kbd "<return>") 'mu4e-conversation-cite)