Merge pull request #2371 from vermiculus/sa/copy-link-at-point

Teach mu4e-copy-thing-at-point about SHR links
This commit is contained in:
Dirk-Jan C. Binnema
2022-11-30 23:35:49 +02:00
committed by GitHub

View File

@ -466,6 +466,7 @@ If there is not e-mail address at point, do nothing."
(interactive)
(let* ((thing (and (thing-at-point 'email)
(string-trim (thing-at-point 'email 'no-props) "<" ">")))
(thing (or thing (get-text-property (point) 'shr-url)))
(thing (or thing (thing-at-point 'url 'no-props))))
(when thing
(kill-new thing)