From df5abea8b2e227d7e4d7dbc0d6a090189b183734 Mon Sep 17 00:00:00 2001 From: khibino Date: Wed, 2 Nov 2011 17:17:42 +0900 Subject: [PATCH] Update README about broken compatibility. --- README | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/README b/README index 2d1885b..a75204f 100644 --- a/README +++ b/README @@ -20,5 +20,23 @@ 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 check command. + + For more information, see: http://www.mew.org/~kazu/proj/ghc-mod/