Fix erb each snippet

Fix `each` snippet so that the block content is not auto filled with the
`item`, following the regular ruby snippets
This commit is contained in:
Larissa Reis 2023-06-02 23:34:07 -03:00
parent 29f86fe19b
commit 2b93d03982

View file

@ -48,7 +48,7 @@
},
"each": {
"prefix": "each",
"body": ["<% ${1:items}.each do |${2:item}| %>", " $2", "<% end %>"],
"body": ["<% ${1:items}.each do |${2:item}| %>", " $3", "<% end %>"],
"description": "each do"
},
"render": {