mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-01 12:17:25 -05:00
Rewrite doctor; move warn! blocks out in doctor.el files
This commit is contained in:
9
modules/lang/plantuml/doctor.el
Normal file
9
modules/lang/plantuml/doctor.el
Normal file
@ -0,0 +1,9 @@
|
||||
;;; lang/plantuml/doctor.el -*- lexical-binding: t; -*-
|
||||
|
||||
(when (require 'plantuml-mode nil t)
|
||||
;; java
|
||||
(unless (executable-find "java")
|
||||
(warn! "Couldn't find java. PlantUML preview or syntax checking won't work"))
|
||||
;; plantuml.jar
|
||||
(unless (file-exists-p plantuml-jar-path)
|
||||
(warn! "Couldn't find plantuml.jar. Install it with-x +plantuml/install")))
|
Reference in New Issue
Block a user