2018-03-20 21:19:37 -04:00
|
|
|
;; -*- lexical-binding: t; no-byte-compile: t; -*-
|
|
|
|
;;; lang/plantuml/doctor.el
|
2018-03-12 13:16:16 -04:00
|
|
|
|
|
|
|
(when (require 'plantuml-mode nil t)
|
|
|
|
;; java
|
|
|
|
(unless (executable-find "java")
|
|
|
|
(warn! "Couldn't find java. PlantUML preview or syntax checking won't work"))
|
2022-01-27 21:17:07 +03:30
|
|
|
;; graphviz
|
|
|
|
(unless (executable-find "dot")
|
|
|
|
(warn! "Couldn't find dot. PlantUML will only show outputs for sequence and activity diagrams"))
|
2018-03-12 13:16:16 -04:00
|
|
|
;; plantuml.jar
|
|
|
|
(unless (file-exists-p plantuml-jar-path)
|
2019-12-18 15:33:26 +01:00
|
|
|
(warn! "Couldn't find plantuml.jar. Install it with M-x plantuml-download-jar")))
|