27 Nov

Linking to Gnus articles in Muse Wiki

Monday November 27th 2006, 5:03 pm
Tags: , ,

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)))

(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:

0 Comments