lang/nim: add doctor.el #568

This commit is contained in:
Henrik Lissner 2018-05-09 10:20:39 +02:00
parent 7f8db56178
commit d9874da38a
No known key found for this signature in database
GPG key ID: 5F6C0EA160557395

View file

@ -0,0 +1,9 @@
;; -*- lexical-binding: t; no-byte-compile: t; -*-
;;; 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."))