From 3a8ceeea923ab4661c6648c3421bd47fb6e632e5 Mon Sep 17 00:00:00 2001 From: "Dirk-Jan C. Binnema" Date: Mon, 14 Oct 2019 20:39:23 +0300 Subject: [PATCH] mu4e: disable K bindings in view We don't support the K- bindings in the gnus-view, so let's avoid the error. --- mu4e/mu4e-view.el | 2 ++ 1 file changed, 2 insertions(+) diff --git a/mu4e/mu4e-view.el b/mu4e/mu4e-view.el index c0d0a6bc..65564038 100644 --- a/mu4e/mu4e-view.el +++ b/mu4e/mu4e-view.el @@ -721,6 +721,8 @@ FUNC should be a function taking two arguments: (define-key map "C" 'mu4e-compose-new) (define-key map "E" 'mu4e-compose-edit) + (define-key map "K" 'ignore) ;; for gnus mode + (define-key map "." 'mu4e-view-raw-message) (define-key map "|" 'mu4e-view-pipe) (define-key map "a" 'mu4e-view-action)