prefer jar for PlantUML if available

This commit is contained in:
dive 2020-03-17 01:14:08 +00:00
parent 4b20c7206e
commit 01439743d7

View file

@ -9,8 +9,8 @@
(set-popup-rule! "^\\*PLANTUML" :size 0.4 :select nil :ttl 0)
(setq plantuml-default-exec-mode
(cond ((executable-find "plantuml") 'executable)
((file-exists-p plantuml-jar-path) 'jar)
(cond ((file-exists-p plantuml-jar-path) 'jar)
((executable-find "plantuml") 'executable)
(plantuml-default-exec-mode))))