mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-24 20:08:10 +01:00
Buttonize citation expander.
Currently the button has no action or special handling at all.
This commit is contained in:
parent
a15f174437
commit
14f492ba0c
1 changed files with 11 additions and 4 deletions
15
notmuch.el
15
notmuch.el
|
@ -490,10 +490,17 @@ which this thread was originally shown."
|
|||
(forward-line))
|
||||
(let ((overlay (make-overlay beg-sub (point))))
|
||||
(overlay-put overlay 'invisible 'notmuch-show-citation)
|
||||
(overlay-put overlay 'before-string
|
||||
(concat indent
|
||||
"[" (number-to-string (count-lines beg-sub (point)))
|
||||
"-line citation. Press 'c' to show.]\n")))))
|
||||
(let (
|
||||
(p (point))
|
||||
(cite-button-text (concat "[" (number-to-string (count-lines beg-sub (point)))
|
||||
"-line citation. Press 'c' to show.]"))
|
||||
)
|
||||
(goto-char (- beg-sub 1))
|
||||
(insert (concat "\n" indent))
|
||||
(insert-button cite-button-text)
|
||||
(insert "\n")
|
||||
(goto-char (+ (length cite-button-text) p))
|
||||
))))
|
||||
(move-to-column depth)
|
||||
(if (looking-at notmuch-show-signature-regexp)
|
||||
(let ((sig-lines (- (count-lines beg-sub end) 1)))
|
||||
|
|
Loading…
Reference in a new issue