Go to file
Conal Elliott b4c2d3366c .ghci for ghci-friendliness (testing) 2012-01-22 20:16:22 -08:00
elisp ver bumps up. 2012-01-06 16:56:33 +09:00
.ghci .ghci for ghci-friendliness (testing) 2012-01-22 20:16:22 -08:00
.gitignore Silly tweak to .gitignore. 2011-10-23 02:01:52 -07:00
Browse.hs adding options: --package-conf and --no-user-package-conf 2011-05-28 06:06:13 +09:00
Cabal.hs adding the current dir to import dirs. 2011-12-19 15:54:46 +09:00
CabalDev.hs remove build-depend to unix module 2011-11-26 22:38:46 +09:00
Check.hs Switch when using cabal-dev case. Bugfix of cabal-dev case. 2011-11-14 19:20:02 +09:00
ErrMsg.hs ErrMsg module. 2011-08-24 16:50:26 +09:00
GHCMod.hs version auto gen. 2011-12-26 17:08:00 +09:00
Info.hs Add support for GHC 7.4.1 2011-12-24 19:01:37 -06: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 Update Changes in README. 2011-11-16 22:34:38 +09:00
Setup.hs adding Setup.hs. 2010-04-03 00:16:22 +09:00
Types.hs Expire unreferenced switches. 2011-11-14 19:28:34 +09:00
ghc-mod.cabal ver bumps up. 2012-01-06 16:56:33 +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)))


Changes:

  If you have customized GHC import-path like follows,

    (setq ghc-flymake-check-includes '("dir1" "dir2"))

  You may update your settings as follows.

    (setq ghc-ghc-options '("-idir1" "-idir2"))

    or

    (setq ghc-ghc-options '("-idir1:dir2"))

  Now, you can simply pass GHC options to ghc-mod sub-commands.


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