mirror of
https://github.com/doomemacs/doomemacs
synced 2025-09-08 15:23:35 -05:00
Add Racket lang
This commit is contained in:
11
modules/lang/racket/doctor.el
Normal file
11
modules/lang/racket/doctor.el
Normal 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."))
|
Reference in New Issue
Block a user