From 306e19f5ddec1b10a0e99ccc54823544187e7ac3 Mon Sep 17 00:00:00 2001 From: Carl Worth Date: Thu, 5 Nov 2009 15:02:20 -0800 Subject: notmuch show: Move subject from one-line summary down to its own line. And change the display code in emacs to display the one-line summary in inverse video. --- notmuch.el | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'notmuch.el') diff --git a/notmuch.el b/notmuch.el index 592c5ab5..4e649d44 100644 --- a/notmuch.el +++ b/notmuch.el @@ -436,9 +436,15 @@ which this thread was originally shown." (defun notmuch-show-markup-header () (re-search-forward notmuch-show-header-begin-regexp) - (next-line 2) + (forward-line 1) (beginning-of-line) (let ((beg (point))) + (end-of-line) + ; Inverse video for subject + (overlay-put (make-overlay beg (point)) 'face '((cons :inverse-video t))) + (beginning-of-line) + (forward-line 2) + (set 'beg (point)) (re-search-forward notmuch-show-header-end-regexp) (overlay-put (make-overlay beg (match-beginning 0)) 'invisible 'notmuch-show-header))) -- cgit v1.2.3