ghc-mod/elisp/ghc-doc.el

61 lines
1.7 KiB
EmacsLisp
Raw Normal View History

2010-01-06 05:38:06 +00:00
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;
;;; ghc.el
;;;
;; Author: Kazu Yamamoto <Kazu@Mew.org>
;; Created: Sep 25, 2009
(require 'ghc-func)
(require 'ghc-comp)
;;; Code:
2010-03-10 07:51:42 +00:00
(defun ghc-browse-document (&optional haskell-org)
(interactive "P")
2010-01-06 05:38:06 +00:00
(let* ((mod0 (ghc-extract-module))
(mod (ghc-read-module-name mod0))
(pkg (ghc-resolve-package-name mod)))
2010-03-10 07:51:42 +00:00
(ghc-display-document pkg mod haskell-org)))
2010-01-06 05:38:06 +00:00
(defun ghc-resolve-package-name (mod)
(with-temp-buffer
(call-process "ghc-pkg" nil t nil "find-module" "--simple-output" mod)
(goto-char (point-min))
(when (looking-at "^\\([^-]+\\)-")
(match-string-no-properties 1))))
(defun ghc-resolve-document-path (pkg)
(with-temp-buffer
(call-process "ghc-pkg" nil t nil "field" pkg "haddock-html")
2010-03-11 05:15:28 +00:00
(goto-char (point-max))
(forward-line -1)
(beginning-of-line)
2010-01-06 05:38:06 +00:00
(when (looking-at "^haddock-html: \\([^ \n]+\\)$")
(match-string-no-properties 1))))
2010-03-10 07:51:42 +00:00
(defvar ghc-doc-local-format "file://%s/%s.html")
(defvar ghc-doc-hackage-format
"http://hackage.haskell.org/packages/archive/%s/latest/doc/html/%s.html")
(defun ghc-display-document (pkg mod haskell-org)
2010-01-06 05:38:06 +00:00
(when (and pkg mod)
(let* ((mod- (ghc-replace-character mod ?. ?-))
2010-03-10 07:51:42 +00:00
(url (if haskell-org
(format ghc-doc-hackage-format pkg mod-)
(format ghc-doc-local-format
(ghc-resolve-document-path pkg) mod-))))
2010-01-06 05:38:06 +00:00
(browse-url url))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defvar ghc-input-map nil)
(unless ghc-input-map
(setq ghc-input-map
(if (boundp 'minibuffer-local-map)
(copy-keymap minibuffer-local-map)
(make-sparse-keymap)))
(define-key ghc-input-map "\t" 'ghc-complete))
(provide 'ghc-doc)