Go to file
randen b9acbf7713 Don't turn C-u into a prefix command
* elisp/ghc.el
  * There are many ways to fix issue #351 so this is
    just one example and may not fit the style you
    prefer, so please feel free to use or not.
    It is easy to work-around the issue by setting
    ghc-initial-sig-key to another key combination
    before ghc-init, but it would be nice to have a
    fix. The use of C-u for this binding seems to
    be just as a flag, thus this change takes
    the simplest fix to achieve that purpose.
2014-08-25 17:19:17 -07:00
elisp Don't turn C-u into a prefix command 2014-08-25 17:19:17 -07:00
Language/Haskell docs: Move GhcModError to right export category in Monad.hs 2014-08-24 14:19:56 +02:00
scripts Add script to collect debugging information. 2014-05-24 16:32:02 +02:00
src Remove dedicated exception handling in check completely 2014-08-19 04:49:44 +02:00
test Keep error information in extract 2014-08-24 14:41:30 +02:00
test-elisp adding test cases for elisp. 2014-04-23 14:51:02 +09:00
.ghci .ghci for ghci-friendliness (testing) 2012-01-22 20:16:22 -08:00
.gitignore Add add-source-timestamps to gitignore 2014-05-04 04:57:38 +02:00
.travis.yml Add workaround for #277 2014-07-04 19:03:57 +02:00
ChangeLog Bump version to 5.0.1.1 2014-08-24 14:49:30 +02:00
CodingStyle adding CodingStyle. 2014-08-12 15:00:56 +09:00
ghc-mod.cabal Bump version to 5.0.1.1 2014-08-24 14:49:30 +02:00
hcar-ghc-mod.tex hcar review. 2014-05-21 09:18:51 +09:00
LICENSE adding README and LICENSE. 2010-03-10 12:13:03 +09:00
README.md readme. 2014-05-19 16:42:34 +09:00
Setup.hs adding Setup.hs. 2010-04-03 00:16:22 +09:00

Happy Haskell Programming

Build Status

Please read: http://www.mew.org/~kazu/proj/ghc-mod/

Using the stable version

Emacs front-end, which is consistent with binaries on Hackage, is available stable MELPA whose URL is http://melpa-stable.milkbox.net/packages/. So, your "~/.emacs" should be:

(require 'package)
(add-to-list 'package-archives 
	     '("melpa" . "http://melpa-stable.milkbox.net/packages/"))
(package-initialize)

With this configuration you can install the stable Emacs front end indicated by "ghc" from MELPA while you can install ghc-mod/ghc-modi binaries by:

% cabal update
% cabal install ghc-mod

Using the develop version

You should install both Emacs front-end and binaries from this git repo. If you use the snapshot MELPA to install Emacs front-end, you would suffer from inconsistency between Emacs front-end and binaries.