I am using GNU Emacs 25.3.1 (x86_64-w64-mingw32)
, on Windows 10
, plantuml 1.4.1
, and the following .emacs
:
(package-initialize)
(require 'package)
(add-to-list 'package-archives
'("MELPA Stable" . "http://stable.melpa.org/packages/") t)
(custom-set-variables
'(package-selected-packages (quote (plantuml-mode ## flycheck company)))
'(plantuml-default-exec-mode (quote jar))
'(plantuml-jar-path "C:\\Users\\tc000210\\AppData\\Roaming\\plantuml.jar"))
I execute plantuml-mode
, and when I try plantuml-preview
on this PlantUML code:
@startuml
A *-- B
@enduml
I get the message error in process sentinel: PLANTUML preview failed: exited abnormally with code 1
Does anyone know how to fix this?
Thanks!