mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-24 20:08:10 +01:00
emacs: call notmuch-show instead of notmuch-search in buttonised id: links
Since message-ids necessarily match just a single message, there's no reason to do a search for the id before viewing the actual message; the search just becomes an extra screen to click through. Clicking on an id: links now just jumps straight to the message itself.
This commit is contained in:
parent
824dad76b6
commit
c0d694035d
1 changed files with 1 additions and 1 deletions
|
@ -803,7 +803,7 @@ a corresponding notmuch search."
|
||||||
(remove-overlays (match-beginning 0) (match-end 0) 'goto-address t)
|
(remove-overlays (match-beginning 0) (match-end 0) 'goto-address t)
|
||||||
(make-text-button (match-beginning 0) (match-end 0)
|
(make-text-button (match-beginning 0) (match-end 0)
|
||||||
'action `(lambda (arg)
|
'action `(lambda (arg)
|
||||||
(notmuch-search ,(match-string-no-properties 0)))
|
(notmuch-show ,(match-string-no-properties 0)))
|
||||||
'follow-link t
|
'follow-link t
|
||||||
'help-echo "Mouse-1, RET: search for this message"
|
'help-echo "Mouse-1, RET: search for this message"
|
||||||
'face goto-address-mail-face))))
|
'face goto-address-mail-face))))
|
||||||
|
|
Loading…
Reference in a new issue