2018-03-20 21:19:37 -04:00
|
|
|
;; -*- lexical-binding: t; no-byte-compile: t; -*-
|
|
|
|
;;; lang/haskell/doctor.el
|
2018-03-12 13:16:16 -04:00
|
|
|
|
|
|
|
(when (featurep! +dante)
|
|
|
|
(unless (executable-find "cabal")
|
|
|
|
(warn! "Couldn't find cabal, haskell-mode may have issues"))
|
|
|
|
|
|
|
|
(unless (executable-find "ghc-mod")
|
|
|
|
(warn! "Couldn't find ghc-mod on PATH. Code completion will not work")))
|
|
|
|
|
|
|
|
(when (featurep! +intero)
|
|
|
|
(unless (executable-find "stack")
|
|
|
|
(warn! "Couldn't find stack. Intero will not work")))
|
|
|
|
|