vim-polyglot/ftplugin/plantuml.vim

43 lines
1.3 KiB
VimL
Raw Normal View History

2016-05-02 04:50:59 -04:00
if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'plantuml') == -1
" Vim plugin file
" Language: PlantUML
" Maintainer: Aaron C. Meadows < language name at shadowguarddev dot com>
" Version: 0.1
2016-09-11 07:24:17 -04:00
if exists("b:loaded_plantuml_plugin")
finish
2016-05-02 04:50:59 -04:00
endif
2016-09-11 07:24:17 -04:00
let b:loaded_plantuml_plugin = 1
2017-02-02 15:16:29 -05:00
let s:cpo_save = &cpo
set cpo&vim
2016-05-02 04:50:59 -04:00
if !exists("g:plantuml_executable_script")
2016-09-11 07:24:17 -04:00
let g:plantuml_executable_script="plantuml"
2016-05-02 04:50:59 -04:00
endif
2016-09-11 07:24:17 -04:00
if exists("loaded_matchit")
let b:match_ignorecase = 0
let b:match_words =
\ '\(\<ref\>\|\<box\>\|\<opt\>\|\<alt\>\|\<group\>\|\<loop\>\|\<note\>\|\<legend\>\):\<else\>:\<end\>' .
\ ',\<if\>:\<elseif\>:\<else\>:\<endif\>' .
\ ',\<rnote\>:\<endrnote\>' .
\ ',\<hnote\>:\<endhnote\>' .
\ ',\<title\>:\<endtitle\>' .
\ ',\<\while\>:\<endwhile\>'
endif
let &l:makeprg=g:plantuml_executable_script . " " . fnameescape(expand("%"))
2016-05-02 04:50:59 -04:00
setlocal comments=s1:/',mb:',ex:'/,:' commentstring=/'%s'/ formatoptions-=t formatoptions+=croql
2016-09-11 07:24:17 -04:00
let b:endwise_addition = '\=index(["note","legend"], submatch(0))!=-1 ? "end " . submatch(0) : "end"'
let b:endwise_words = 'loop,group,alt,note,legend'
let b:endwise_pattern = '^\s*\zs\<\(loop\|group\|alt\|note\ze[^:]*$\|legend\)\>.*$'
let b:endwise_syngroups = 'plantumlKeyword'
2017-02-02 15:16:29 -05:00
let &cpo = s:cpo_save
unlet s:cpo_save
2016-05-02 04:50:59 -04:00
endif