ghc-mod/elisp/ghc-flymake.el

24 lines
812 B
EmacsLisp
Raw Normal View History

2010-03-11 10:03:17 +00:00
(require 'flymake)
(defvar ghc-flymake-allowed-file-name-masks
'("\\.l?hs$" ghc-flymake-init flymake-simple-cleanup flymake-get-real-file-name))
(defvar ghc-flymake-err-line-patterns
'("^\\(.*\\.l?hs\\):\\([0-9]+\\):\\([0-9]+\\):\\(.+\\)" 1 2 3 4))
(add-to-list 'flymake-allowed-file-name-masks
ghc-flymake-allowed-file-name-masks)
(add-to-list 'flymake-err-line-patterns
ghc-flymake-err-line-patterns)
(defun ghc-flymake-init ()
(let* ((temp-file (flymake-init-create-temp-buffer-copy
'flymake-create-temp-inplace))
(local-file (file-relative-name
temp-file
(file-name-directory buffer-file-name))))
2010-03-11 13:39:07 +00:00
(list "ghc-mod" (append (ghc-module-command-args)
(list "check" local-file)))))
2010-03-11 10:03:17 +00:00
(provide 'ghc-flymake)