summaryrefslogtreecommitdiffhomepage
path: root/attic/misc.org
diff options
context:
space:
mode:
Diffstat (limited to 'attic/misc.org')
-rw-r--r--attic/misc.org12
1 files changed, 12 insertions, 0 deletions
diff --git a/attic/misc.org b/attic/misc.org
index 39b1cc8..3aac8c7 100644
--- a/attic/misc.org
+++ b/attic/misc.org
@@ -891,3 +891,15 @@
("C-c B" . bookmark-set)))
#+end_src
+* notmuch
+ #+begin_src emacs-lisp
+ (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))
+
+ #+end_src