1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-23 20:10:05 +08:00
SpaceVim/bundle/plantuml-syntax
2023-03-25 15:22:49 +08:00
..
ftdetect feat(plantuml): fix lang#plantuml layer 2023-03-25 15:22:49 +08:00
ftplugin feat(plantuml): fix lang#plantuml layer 2023-03-25 15:22:49 +08:00
indent feat(plantuml): fix lang#plantuml layer 2023-03-25 15:22:49 +08:00
syntax feat(plantuml): fix lang#plantuml layer 2023-03-25 15:22:49 +08:00
LICENSE feat(plantuml): fix lang#plantuml layer 2023-03-25 15:22:49 +08:00
README.md feat(plantuml): fix lang#plantuml layer 2023-03-25 15:22:49 +08:00

Vim PlantUML Syntax/Plugin/FTDetect

This is a vim syntax file for PlantUML.

The filetype will be set to plantuml for *.pu, *.uml, *.puml, *.iuml or *.plantuml files or if the first line of a file contains @startuml.

Additionally the makeprg is set to plantuml assuming you have this executable in your path. This file could contain something like

#!/bin/bash
java -jar $HOME/lib/java/plantuml.jar -tsvg $@

You can change the name of this file by setting g:plantuml_executable_script and disable this feature by setting g:plantuml_set_makeprg to 0.

See examples here: Plantuml Syntax.