Skip to content

Commit 1d9ffbb

Browse files
committed
Merge pull request mattn#465 from markonm/patch-1
Prevent expansion of HTML end tag
2 parents a138862 + 45438a2 commit 1d9ffbb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

autoload/emmet/lang/html.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ function! emmet#lang#html#findTokens(str) abort
1717
let str = a:str
1818
let [pos, last_pos] = [0, 0]
1919
while 1
20-
let tag = matchstr(str, '<[a-zA-Z].\{-}>', pos)
20+
let tag = matchstr(str, '<[a-zA-Z/].\{-}>', pos)
2121
if len(tag) == 0
2222
break
2323
endif

0 commit comments

Comments
 (0)