mattn / emmet-vim

emmet for vim: http://emmet.io/
http://mattn.github.io/emmet-vim
MIT License
6.41k stars 411 forks source link

can't expand in fieldsets input[name=item[$]]*5 #412

Closed ichaoX closed 6 years ago

ichaoX commented 6 years ago

create a form with an array of inputs

input:

input[name=item[$]]*5

expected output:

<input type="" name="item[1]">
<input type="" name="item[2]">
<input type="" name="item[3]">
<input type="" name="item[4]">
<input type="" name="item[5]">

actual output:

<input type="" name="item[1">
mattn commented 6 years ago

fixed, but this is workaround.