From ceb4fa6eff4a7d5623469418eb3b81783c3d4cc8 Mon Sep 17 00:00:00 2001 From: Oleksandr Shulgin Date: Tue, 14 Dec 2021 18:16:36 +0100 Subject: [PATCH] Fix documentation of plantuml-default-exec-mode 1. Add the missing modes: `executable` and `server`. 2. Order modes from most to least preferred (`server' should be last). --- plantuml-mode.el | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/plantuml-mode.el b/plantuml-mode.el index e40ba0d..394c835 100644 --- a/plantuml-mode.el +++ b/plantuml-mode.el @@ -133,10 +133,12 @@ (defcustom plantuml-default-exec-mode 'server "Default execution mode for PlantUML. Valid values are: -- `jar': run PlantUML as a JAR file (requires a local install of the PlantUML JAR file, see `plantuml-jar-path'" +- `jar': run PlantUML as a JAR file (requires a local install of the PlantUML JAR file, see `plantuml-jar-path' +- `executable': run PlantUML as a shell command, see `plantuml-executable-path' +- `server': use PlantUML server for rendering, see `plantuml-server-url'" :type 'symbol :group 'plantuml - :options '(jar server executable)) + :options '(jar executable server)) (defcustom plantuml-suppress-deprecation-warning t "To silence the deprecation warning when `puml-mode' is found upon loading."