27
Nov
Linking to Gnus articles in Muse Wiki
Planner allows you to create tasks which link to Gnus articles. It also makes sense to have links to emails in other muse Wiki pages, but Planner does not provide this. The following code does:
(defun gnus-copy-muse-url-from-summary() (interactive)
(kill-new (planner-gnus-annotation-from-summary)))
(kill-new (planner-gnus-annotation-from-summary)))
(defun gnus-copy-muse-url-from-article() (interactive)
(kill-new (planner-gnus-annotation-from-message)))
(define-key gnus-summary-mode-map (kbd "C-c C-w") ‘gnus-copy-muse-url-from-summary)
(define-key gnus-summary-mode-map (kbd "C-c C-w") ‘gnus-copy-muse-url-from-summary)
(require ‘planner-gnus)
(planner-gnus-insinuate)
Use C-c C-w from the Gnus summary or article buffer to copy the article link into the clipboard. Insert it as usual into one of the muse Wiki pages:


