From d6d741c2b4d9ca6099173524ddc9a0160bd54eb4 Mon Sep 17 00:00:00 2001 From: yemai Date: Fri, 17 May 2019 12:35:29 +0800 Subject: [PATCH] fix: vue end tag indent error --- indent/vue.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/indent/vue.vim b/indent/vue.vim index a64acc0..163e6ae 100644 --- a/indent/vue.vim +++ b/indent/vue.vim @@ -105,7 +105,7 @@ function! GetVueIndent() endif endif - if curline =~? s:vue_tag + if curline =~? s:vue_tag || curline =~? s:vue_end_tag call s:LogMsg('current is vue tag') let ind = 0 elseif (exists("g:vim_vue_plugin_has_init_indent")