Go to file
Kazu Yamamoto 256eec740c Calling save-buffer interactively.
from Troels Henriksen.
2012-08-03 12:44:28 +09:00
elisp Calling save-buffer interactively. 2012-08-03 12:44:28 +09:00
.ghci .ghci for ghci-friendliness (testing) 2012-01-22 20:16:22 -08:00
.gitignore Added support for auto-completing option flags and pragmas 2012-01-22 20:18:40 -08:00
Browse.hs Adaptor layer for GHC API. 2012-02-14 16:09:53 +09:00
Cabal.hs enable dynamic linking for FFI 2012-03-24 12:58:02 +09:00
CabalDev.hs minor fix. 2012-07-06 16:55:14 +09:00
Check.hs TH expand hack. 2012-02-27 12:37:11 +09:00
ErrMsg.hs reverting file path and C-cC-j. 2012-03-02 21:36:58 +09:00
Flag.hs Adaptor layer for GHC API. 2012-02-14 16:09:53 +09:00
GHCApi.hs prevent exitFailure. 2012-06-04 15:40:26 +09:00
GHCChoice.hs Using io-choice. 2012-02-16 14:44:20 +09:00
GHCMod.hs Add option to specify cabal-dev sandbox explicitly. 2012-04-09 21:27:03 +01:00
Gap.hs flag hack for GHC 7.4. 2012-06-07 15:56:55 +09:00
Info.hs for GHC 7.0.x. 2012-02-21 16:35:28 +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 Adaptor layer for GHC API. 2012-02-14 16:09:53 +09:00
README adding Vim 2012-02-16 17:44:44 +09:00
Setup.hs adding Setup.hs. 2010-04-03 00:16:22 +09:00
Types.hs Add option to specify cabal-dev sandbox explicitly. 2012-04-09 21:27:03 +01:00
ghc-mod.cabal ver bumps up. 2012-06-28 11:04:29 +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)))


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/