Go to file
Kazu Yamamoto bb07f52a8a upgrade to GHC 6.12. 2010-04-02 14:39:41 +09:00
elisp display hack. 2010-04-02 14:39:02 +09:00
.gitignore ignore files. 2010-01-07 10:50:29 +09:00
Browse.hs introducing -i, -g, and -p. 2010-03-11 22:39:07 +09:00
Check.hs throw any menu. use a buffer to display errors instead. 2010-04-01 11:58:44 +09:00
GHCMod.hs upgrading GHC 6.12 2010-03-31 13:06:47 +09:00
LICENSE adding README and LICENSE. 2010-03-10 12:13:03 +09:00
List.hs upgrade to GHC 6.12. 2010-04-02 14:39:41 +09:00
Param.hs output-dir. 2010-03-12 00:20:02 +09:00
README improving README. 2010-03-12 13:42:42 +09:00
ghc-mod.cabal upgrade to GHC 6.12. 2010-04-02 14:39:41 +09:00

README

		     Haskell Completion on Emacs

This package enables many completions for Haskell programming in Haskell.
Flymake is also integrated.

The "ghc-mod" program written in Haskell is a backend to gather
information from GHC.

Elisp libraries including ghc-mod is an extension to haskell-mode.
You should put the followings in your "~/.emacs.el":

    (autoload 'ghc-init "ghc" nil t)
    (add-hook 'haskell-mode-hook (lambda () (ghc-init)))

or

    (add-hook 'haskell-mode-hook (lambda () (ghc-init) (flymake-mode)))

For more information, see:
	http://www.mew.org/~kazu/proj/ghc-mod/