Fix closing tag detection issue.
This commit is contained in:
parent
46dfd55359
commit
edb69fff13
1 changed files with 1 additions and 1 deletions
|
@ -54,7 +54,7 @@ endfun
|
||||||
|
|
||||||
fun! XmlCurrentLine(line)
|
fun! XmlCurrentLine(line)
|
||||||
" 'Checking current line:'
|
" 'Checking current line:'
|
||||||
if (match(a:line, '^\s*/\{0,1}>') != -1) || (match(a:line, '</') != -1)
|
if (match(a:line, '^\s*/\{0,1}>') != -1) || (match(a:line, '^\s*</') != -1)
|
||||||
" 'Is closing tag line'
|
" 'Is closing tag line'
|
||||||
return -1
|
return -1
|
||||||
else
|
else
|
||||||
|
|
Loading…
Add table
Reference in a new issue