mu4e-conversation: Add in-buffer reply bindings

This commit is contained in:
Pierre Neidhardt 2018-06-22 10:57:42 +02:00
parent 1177456348
commit 142a2e3f50
1 changed files with 13 additions and 3 deletions

View File

@ -39,14 +39,24 @@
"Set up `evil' bindings for `mu4e-conversation'."
(evil-define-key 'normal mu4e-conversation-linear-map
"zv" 'mu4e-conversation-toggle-view)
(evil-define-key 'normal mu4e-conversation-tree-map
"zv" 'mu4e-conversation-toggle-view)
(evil-define-key 'visual mu4e-conversation-linear-map
(kbd "<return>") 'mu4e-conversation-cite)
(evil-define-key '(normal visual) mu4e-conversation-linear-map
(kbd "C-x C-s") 'mu4e-conversation-save
(kbd "C-c C-c") 'mu4e-conversation-send
(kbd "M-q") 'mu4e-conversation-fill-long-lines
"#" 'mu4e-conversation-toggle-hide-cited
"[" 'mu4e-conversation-previous-message ; TODO: Don't override previous-unread? There is still "gk".
"]" 'mu4e-conversation-next-message
"q" 'mu4e~view-quit-buffer)
"q" 'mu4e-conversation-quit)
(evil-define-key 'normal mu4e-conversation-tree-map
"zv" 'mu4e-conversation-toggle-view)
(evil-define-key 'visual mu4e-conversation-tree-map
(kbd "<return>") 'mu4e-conversation-cite)
(evil-define-key '(normal visual) mu4e-conversation-tree-map
(kbd "C-x C-s") 'mu4e-conversation-save
(kbd "C-c C-c") 'mu4e-conversation-send
(kbd "M-q") 'mu4e-conversation-fill-long-lines
"C" 'mu4e-compose-new
"R" 'mu4e-compose-reply
"p" 'mu4e-conversation-save-attachment