Go to file
Kazu Yamamoto efece8be9a refactoring. 2013-03-05 16:16:27 +09:00
elisp adding comment. 2013-03-05 15:26:33 +09:00
test adding pkgconf. 2013-03-05 11:00:56 +09:00
.ghci .ghci for ghci-friendliness (testing) 2012-01-22 20:16:22 -08:00
.gitignore add ignore entry 2012-09-27 14:32:41 -10:00
.travis.yml adding .travis.yml. 2013-02-12 14:04:32 +09:00
Browse.hs refactoring GHCApi. 2013-03-04 13:41:56 +09:00
CabalApi.hs pure and applicative style. 2013-03-05 10:21:55 +09:00
ChangeLog create ChangeLog. 2013-03-01 10:44:57 +09:00
Check.hs refactoring GHCApi. 2013-03-04 13:41:56 +09:00
Cradle.hs limiting export funcs. 2013-03-04 18:17:01 +09:00
Debug.hs refactoring for testing. 2013-03-04 18:11:09 +09:00
ErrMsg.hs normalise file names. 2013-03-05 15:18:57 +09:00
Flag.hs Adaptor layer for GHC API. 2012-02-14 16:09:53 +09:00
GHCApi.hs refactoring. 2013-03-05 16:16:27 +09:00
GHCChoice.hs Using io-choice. 2012-02-16 14:44:20 +09:00
GHCMod.hs refactoring for testing. 2013-03-04 18:11:09 +09:00
Gap.hs "Warning: "(a space after :) for GHC 7.6. 2013-02-13 16:04:22 +09:00
Info.hs refactoring GHCApi. 2013-03-04 13:41:56 +09:00
LICENSE adding README and LICENSE. 2010-03-10 12:13:03 +09:00
Lang.hs Adaptor layer for GHC API. 2012-02-14 16:09:53 +09:00
Lint.hs Supporting GHC 7.2.1! 2011-08-24 15:58:12 +09:00
List.hs refactoring GHCApi. 2013-03-04 13:41:56 +09:00
README Updateing README. 2013-03-03 15:55:22 +09:00
Setup.hs adding Setup.hs. 2010-04-03 00:16:22 +09:00
Types.hs test for Cradle. 2013-03-05 10:22:33 +09:00
ghc-mod.cabal adding missing files to cabal file. 2013-03-05 11:04:45 +09:00

README

		Happy Haskell programming on Emacs/Vim

For Vim users: see https://github.com/eagletmt/ghcmod-vim

For Emacs users: read the followings:

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)))

Customization:

An example to specify GHC options:

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

An example to specify HLint options:

    (setq ghc-hlint-options '("--ignore=Use camelCase"))


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