1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-23 17:40:06 +08:00
SpaceVim/bundle/plantuml-previewer.vim/script/save-as.cmd

21 lines
380 B
Batchfile

set java=%1
shift
set jar_path=%1
shift
set puml_src_path=%1
shift
set output_dir_path=%1
shift
set output_path=%1
shift
set save_path=%1
shift
set image_type=%1
shift
set include_path=%1
shift
%java% -Dapple.awt.UIElement=true -Dplantuml.include.path="%include_path%" -jar "%jar_path%" "%puml_src_path%" -t%image_type% -o "%output_dir_path%"
copy "%output_path%" "%save_path%"