Go to file
Kazu Yamamoto 20e68337d8 browse takes a list of modules. 2010-04-30 16:27:10 +09:00
elisp removing ghc and ghci options. 2010-04-28 23:28:33 +09:00
.gitignore ignore files. 2010-01-07 10:50:29 +09:00
Browse.hs browse takes a list of modules. 2010-04-30 16:27:10 +09:00
Check.hs symplify code. Note that parseDynamicFlags is essential, cannot be omitted. 2010-04-30 15:27:17 +09:00
GHCMod.hs browse takes a list of modules. 2010-04-30 16:27:10 +09:00
LICENSE adding README and LICENSE. 2010-03-10 12:13:03 +09:00
Lang.hs Using GHC API. 2010-04-27 10:29:29 +09:00
List.hs upgrade to GHC 6.12. 2010-04-02 14:39:41 +09:00
Param.hs -fno-code and no outputDir. 2010-04-29 12:39:48 +09:00
README improving README. 2010-03-12 13:42:42 +09:00
Setup.hs adding Setup.hs. 2010-04-03 00:16:22 +09:00
ghc-mod.cabal Using GHC API for browse! 2010-04-28 15:51:30 +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/