mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-22 02:48:08 +01:00
emacs: Make the message-summary highlighting extend to end of visible line.
This will look much nicer than the highlighting terminating at the end of the summary text.
This commit is contained in:
parent
e1f05f1c20
commit
682102c2df
1 changed files with 3 additions and 3 deletions
|
@ -726,11 +726,11 @@ which this thread was originally shown."
|
|||
(re-search-forward notmuch-show-header-begin-regexp)
|
||||
(forward-line)
|
||||
(let ((beg (point-marker))
|
||||
(summary-end (copy-marker (line-beginning-position 2)))
|
||||
(btn nil))
|
||||
(end-of-line)
|
||||
; Inverse video for subject
|
||||
(overlay-put (make-overlay beg (point)) 'face '(:inverse-video t))
|
||||
(setq btn (make-button beg (point) :type 'notmuch-button-body-toggle-type))
|
||||
(overlay-put (make-overlay beg summary-end) 'face '(:inverse-video t))
|
||||
(setq btn (make-button beg summary-end :type 'notmuch-button-body-toggle-type))
|
||||
(forward-line 1)
|
||||
(end-of-line)
|
||||
(let ((beg-hidden (point-marker)))
|
||||
|
|
Loading…
Reference in a new issue