Go to file
Kazu Yamamoto 607e808752 updating ChangeLog. 2013-03-13 15:27:10 +09:00
elisp adding comment. 2013-03-05 15:26:33 +09:00
test test for fast (not TH). 2013-03-13 13:37:17 +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 clean up the code for Doc/SDoc. 2013-03-12 22:15:23 +09:00
CabalApi.hs New method to check Template Haskell. 2013-03-13 13:17:22 +09:00
ChangeLog updating ChangeLog. 2013-03-13 15:27:10 +09:00
Check.hs adding a comment. 2013-03-13 13:22:02 +09:00
Cradle.hs pkgConf is a directory. 2013-03-07 20:50:04 +09:00
Debug.hs test for fast (not TH). 2013-03-13 13:37:17 +09:00
Doc.hs clean up the code for Doc/SDoc. 2013-03-12 22:15:23 +09:00
ErrMsg.hs Style hack to pass a test. 2013-03-13 11:07:43 +09:00
Flag.hs Adaptor layer for GHC API. 2012-02-14 16:09:53 +09:00
GHCApi.hs New method to check Template Haskell. 2013-03-13 13:17:22 +09:00
GHCChoice.hs Using io-choice. 2012-02-16 14:44:20 +09:00
GHCMod.hs Updating help message. 2013-03-05 16:25:37 +09:00
Gap.hs removing tracingDynFlags. 2013-03-13 10:54:50 +09:00
Info.hs New method to check Template Haskell. 2013-03-13 13:17:22 +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 cosmetic changes. 2013-03-12 16:19:44 +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 New method to check Template Haskell. 2013-03-13 13:17:22 +09:00
ghc-mod.cabal ver bumps up. 2013-03-13 14:55:01 +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/