plantuml-syntax


Ⅰ. 插件描述

vim syntax file for plantuml

Ⅱ. 基本信息

创建日期:  2011-04-03
使用用户:  438
Github星:  272
插件作者:  Anders Thøgersen

Ⅲ. 安装方法

使用Vundle管理器安装

在你的.vimrc下添加:
Plugin 'aklt/plantuml-syntax'
… 然后在Vim中运行以下命令:
:source %
:PluginInstall

对于Vundle版本 < 0.10.2,请用上面的Bundle替换Plugin。

使用NeoBundle管理器安装

在你的.vimrc下添加:
NeoBundle 'aklt/plantuml-syntax'
… 然后在Vim中运行以下命令:
:source %
:NeoBundleInstall

使用VimPlug管理器安装

在你的.vimrc下添加:
Plug 'aklt/plantuml-syntax'
… 然后在Vim中运行以下命令:
:source %
:PlugInstall

使用Pathogen管理器安装

在终端中运行以下命令:
cd ~/.vim/bundle
git clone https://github.com/aklt/plantuml-syntax

Ⅳ. 文档说明

# 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.

添加新评论