Go to file
Kazu Yamamoto 387bf83f37 better loading of symbols.
symbols of modules are loaded when a Haskell file is opened on
Emacs. idle timer is still effective. M-C-e is obsoleted.
M-C-m loads symbols of all un-loaded modules.
2010-03-10 15:54:27 +09:00
elisp better loading of symbols. 2010-03-10 15:54:27 +09:00
.gitignore ignore files. 2010-01-07 10:50:29 +09:00
GHCMod.hs removing Debug.Trace. 2010-03-10 12:02:14 +09:00
LICENSE adding README and LICENSE. 2010-03-10 12:13:03 +09:00
README adding README and LICENSE. 2010-03-10 12:13:03 +09:00
ghc-mod.cabal clean up .cabal 2010-03-10 12:06:06 +09:00

README

		     Haskell Completion on Emacs

This package enables many completions for Haskell programming in Haskell.

The "ghc-mod" program written in Haskell is a backend to gather
completion information of Haskell modules with GHC.

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