When a link is followed, the document it refers to is retrieved. Following a filename link will cause emacs to load the file normally. For URLs and message-ids, the default retrieval method is w3 (the emacs WWW browser).
(if (getenv "DISPLAY") (setq hot-url-fetch-url-function 'mosaic-fetch-url))Or, you can manually switch to Mosaic retrieval by doing
M-x hot-url-use-mosaic
(setq load-path (append load-path '("/usr/misc/.lemacs/lisp/local-pkgs")))The following files from that directory are involved:
hot-url.el hot-link.el mosaic-fetch-url.el w3-fetch-url.el zephyr-url.el vm-url.el mh-e-url.el gnus-url.el
For zephyr-mode, add this to your .emacs file after zephyr.el is loaded:
(require 'zephyr-url)For VM, add this at the end of your .vm file:
(require 'vm-url)For mh-e, add this to your .emacs file:
(setq mh-folder-mode-hook (list '(lambda () (require 'mh-e-url))))For gnus, add this to your .emacs file:
(setq gnus-Startup-hook (list (function (lambda () (require 'gnus-url)))))
If you have questions or suggestions for hot-url or the associated packages, ask the author, Darrell.Kindred@cs.cmu.edu. Thanks to Arup Mukherjee and Rujith de Silva for their contributions.
Darrell.Kindred@cs.cmu.edu