Go to file
Kazu Yamamoto ad1b959820 ver bumps up.
We will break backward compatibility.
2011-10-20 11:22:24 +09:00
elisp ver bumps up. 2011-10-20 11:22:24 +09:00
.gitignore ignore files. 2010-01-07 10:50:29 +09:00
Browse.hs adding options: --package-conf and --no-user-package-conf 2011-05-28 06:06:13 +09:00
Cabal.hs adding dir for doesFileExist. 2011-10-19 14:22:28 +09:00
Check.hs Simply passing GHC options to ghc-mod check command. 2011-10-19 19:09:36 +09:00
ErrMsg.hs ErrMsg module. 2011-08-24 16:50:26 +09:00
GHCMod.hs ver bumps up. 2011-10-20 11:22:24 +09:00
Info.hs Supporting GHC 7.2.1! 2011-08-24 15:58:12 +09:00
LICENSE adding README and LICENSE. 2010-03-10 12:13:03 +09:00
Lang.hs Supporting GHC7 (Krzysztof Skrzętnicki). 2010-11-17 12:27:23 +09:00
Lint.hs Supporting GHC 7.2.1! 2011-08-24 15:58:12 +09:00
List.hs adding options: --package-conf and --no-user-package-conf 2011-05-28 06:06:13 +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 Simply passing GHC options to ghc-mod check command. 2011-10-19 19:09:36 +09:00
ghc-mod.cabal ver bumps up. 2011-10-20 11:22:24 +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/