Skip to content

Instantly share code, notes, and snippets.

@notmgsk
notmgsk / mu4e-jump-to-thing.el
Last active December 12, 2017 19:02 — forked from ziprandom/mu4e-jump-to-thing.el
`M-.` style jumping from mu4e-message-view buffers
;;
;; jump to thing on M-.
;;
(defun mu4e-jump-to-thing (u)
"jump to thing under point (should work with addresses, dates, tags)"
(interactive "P")
(let*
((type (string-remove-suffix ":" (first (split-string (thing-at-point 'line)))))
(query (pcase type
("From" (concat "contact:" (get-text-property (point) 'email)))