]> git.notmuchmail.org Git - notmuch/commitdiff
make header names bold in show-mode
authorAlexander Botero-Lowry <alex.boterolowry@gmail.com>
Fri, 20 Nov 2009 08:06:17 +0000 (00:06 -0800)
committerAlexander Botero-Lowry <alexbl@fortitudo.(none)>
Sun, 22 Nov 2009 23:26:18 +0000 (15:26 -0800)
notmuch.el

index 763c85fffe7971cdf011299315274e7072db6bea..70dbe5ba7f6baaf8ebfec6cce86e1ea73234df1a 100644 (file)
@@ -593,6 +593,14 @@ which this thread was originally shown."
       (re-search-forward notmuch-show-header-end-regexp)
       (beginning-of-line)
       (let ((end (point-marker)))
       (re-search-forward notmuch-show-header-end-regexp)
       (beginning-of-line)
       (let ((end (point-marker)))
+        (goto-char beg)
+        (forward-line)
+        (while (looking-at "[A-Za-z][-A-Za-z0-9]*:")
+          (beginning-of-line)
+          (overlay-put (make-overlay (point) (re-search-forward ":"))
+                       'face 'bold)
+          (forward-line)
+          )
        (indent-rigidly beg end depth)
        (overlay-put (make-overlay beg-hidden end)
                     'invisible 'notmuch-show-header)
        (indent-rigidly beg end depth)
        (overlay-put (make-overlay beg-hidden end)
                     'invisible 'notmuch-show-header)