diff options
Diffstat (limited to 'indent/velocity.vim')
-rw-r--r-- | indent/velocity.vim | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/indent/velocity.vim b/indent/velocity.vim index 297fffff..6ac23863 100644 --- a/indent/velocity.vim +++ b/indent/velocity.vim @@ -1,9 +1,9 @@ -if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'vm') == -1 - +if exists('g:polyglot_disabled') && index(g:polyglot_disabled, 'vm') != -1 + finish +endif + if exists("b:did_indent") finish endif runtime! indent/html.vim - -endif |