2022-08-16 20:57:40 +01:00
|
|
|
|
2018-05-09 10:20:39 +02:00
|
|
|
;;; lang/nim/doctor.el
|
|
|
|
|
|
|
|
(unless (executable-find "nimsuggest")
|
|
|
|
(warn! "Could not find nimsuggest executable; code-completion, syntax checking and jump-to-definition functionality will be disabled."))
|
|
|
|
|
|
|
|
(unless (executable-find "nim")
|
|
|
|
(warn! "Could not find nim executable; build commands will be disabled."))
|
|
|
|
|
2022-08-16 20:57:40 +01:00
|
|
|
(when (modulep! :editor format)
|
|
|
|
(unless (executable-find "nimfmt")
|
|
|
|
(warn! "Could not find nimfmt. Formatting will be disabled.")))
|