Go to file
Kazu Yamamoto b3d9b12688 fixing a bug of func = undefined. 2010-06-25 20:31:46 +09:00
elisp fixing a bug of func = undefined. 2010-06-25 20:31:46 +09:00
.gitignore ignore files. 2010-01-07 10:50:29 +09:00
Browse.hs Param -> Types. 2010-04-30 18:36:31 +09:00
Check.hs Extra info for GHC warnings. 2010-06-14 14:27:35 +09:00
GHCMod.hs usage hack. 2010-06-14 15:38:56 +09:00
LICENSE adding README and LICENSE. 2010-03-10 12:13:03 +09:00
Lang.hs Param -> Types. 2010-04-30 18:36:31 +09:00
Lint.hs hlint options can be specified from ghc-hlint-options. 2010-06-14 11:56:35 +09:00
List.hs Param -> Types. 2010-04-30 18:36:31 +09:00
README doc update. 2010-05-12 15:42:28 +09:00
Setup.hs adding Setup.hs. 2010-04-03 00:16:22 +09:00
Types.hs hlint options can be specified from ghc-hlint-options. 2010-06-14 11:56:35 +09:00
ghc-mod.cabal verion up. 2010-06-08 11:23:43 +09:00

README

		  Happy Haskell programming on Emacs

Features:

1) Completions of keyword, module, class, function, types,
   language extensions, etc.
2) Flymake with GHC and hlint
3) Inserting code template

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

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/