From: Mark Walters Date: Sat, 15 Oct 2016 07:32:46 +0000 (+0100) Subject: emacs: add global keybinding M-= for refresh all buffers X-Git-Tag: 0.24_rc0~112 X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=commitdiff_plain;h=2f643ac763e4e2f2b1951f0f1197af951c8b2575 emacs: add global keybinding M-= for refresh all buffers We can't use c-u = as some of the notmuch-show refresh function already uses that. This is a global keybinding for a relatively infrequent function but M-= seems unlikely to cause conflicts. --- diff --git a/emacs/notmuch-lib.el b/emacs/notmuch-lib.el index 7cb1169c..1f0d1678 100644 --- a/emacs/notmuch-lib.el +++ b/emacs/notmuch-lib.el @@ -151,6 +151,7 @@ For example, if you wanted to remove an \"inbox\" tag and add an (define-key map "z" 'notmuch-tree) (define-key map "m" 'notmuch-mua-new-mail) (define-key map "=" 'notmuch-refresh-this-buffer) + (define-key map (kbd "M-=") 'notmuch-refresh-all-buffers) (define-key map "G" 'notmuch-poll-and-refresh-this-buffer) (define-key map "j" 'notmuch-jump-search) map)