2006-03-21 Carsten Dominik <dominik@science.uva.nl>
- * textmodes/org.el: (org-open-at-point): Fixed bug in wiki-stype
+ * textmodes/org.el: (org-open-at-point): Fixed bug in wiki-style
bracket links.
2006-03-21 Kim F. Storm <storm@cua.dk>
(while (string-match " *\n *" link)
(setq link (replace-match " " t t link)))
(if (string-match org-link-regexp link)
- (setq type (match-string 1)
- path (match-string 2))
+ (setq type (match-string 1 link)
+ path (match-string 2 link))
(setq type "thisfile"
path link))
(throw 'match t)))
(cond
+ ((member type '("http" "https" "ftp" "mailto" "news"))
+ ;; give these to some browser
+ (browse-url (concat type ":" path)))
+
((string= type "tags")
(org-tags-view in-emacs path))
((or (string= type "camel")