diff options
author | Adam Stankiewicz <sheerun@sher.pl> | 2017-05-17 11:07:28 +0200 |
---|---|---|
committer | Adam Stankiewicz <sheerun@sher.pl> | 2017-05-17 11:07:28 +0200 |
commit | af870100716f20ee4daef9cc527a9ecf41b54114 (patch) | |
tree | 0859464c3145682cbfc29ad08de4527dd661abf7 /indent/plantuml.vim | |
parent | ef369d45a505403587ea0bae30ce6768ba51398c (diff) | |
download | vim-polyglot-af870100716f20ee4daef9cc527a9ecf41b54114.tar.gz vim-polyglot-af870100716f20ee4daef9cc527a9ecf41b54114.zip |
Update
Diffstat (limited to 'indent/plantuml.vim')
-rw-r--r-- | indent/plantuml.vim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indent/plantuml.vim b/indent/plantuml.vim index b2d3d8c3..a5e6fcdf 100644 --- a/indent/plantuml.vim +++ b/indent/plantuml.vim @@ -1,6 +1,6 @@ if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'plantuml') == -1 -if exists("b:did_indent") +if exists('b:did_indent') finish endif let b:did_indent = 1 @@ -9,7 +9,7 @@ setlocal indentexpr=GetPlantUMLIndent() setlocal indentkeys=o,O,<CR>,<:>,!^F,0end,0else,} " only define the indent code once -if exists("*GetPlantUMLIndent") +if exists('*GetPlantUMLIndent') finish endif |