Add Racket lang

This commit is contained in:
Marcelo dos Santos 2018-07-29 10:50:17 -03:00
parent 637131a264
commit d8cd4bdf03
4 changed files with 134 additions and 0 deletions

View file

@ -0,0 +1,11 @@
;; -*- lexical-binding: t; no-byte-compile: t; -*-
;;; lang/racket/doctor.el
(unless (executable-find "drracket")
(warn! "Could not find drracket executable; code-completion and syntax checking will not work."))
(unless (executable-find "racket")
(warn! "Could not find racket executable; REPL will not work."))
(unless (executable-find "raco")
(warn! "Could not find raco executable; commands for install packages and build libraries will not work."))