diff options
author | jao <jao@gnu.org> | 2021-08-13 19:53:57 +0100 |
---|---|---|
committer | jao <jao@gnu.org> | 2021-08-13 19:53:57 +0100 |
commit | 178245f5ef8606338b768ebaffe9deeb1ab5f63b (patch) | |
tree | 4d951bfda297acf38af56d2aa04e9da3b1537bda /lib | |
parent | c8089e64534fcf9d0f33e7424f389887ca10408d (diff) | |
download | elibs-178245f5ef8606338b768ebaffe9deeb1ab5f63b.tar.gz elibs-178245f5ef8606338b768ebaffe9deeb1ab5f63b.tar.bz2 |
notmuch: prefer html multipart
Diffstat (limited to 'lib')
-rw-r--r-- | lib/net/jao-notmuch.el | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/net/jao-notmuch.el b/lib/net/jao-notmuch.el index 918171f..48ba775 100644 --- a/lib/net/jao-notmuch.el +++ b/lib/net/jao-notmuch.el @@ -176,6 +176,15 @@ (button-at (point))) (notmuch-show-toggle-part-invisibility)))) +(defun jao-notmuch--show-hidden-html () + (when (save-excursion + (goto-char (point-min)) + (re-search-forward "^\\[ text/html (hidden) \\]" nil t)) + (jao-notmuch--toggle-mime))) + +(defun jao-notmuch-show-prefer-html () + (add-hook 'notmuch-show-hook #'jao-notmuch--show-hidden-html)) + (defun jao-notmuch-toggle-mime-parts () (interactive) (when (jao-notmuch-goto-message-buffer nil t) |