mblode / vscode-twig-language

VS Code extension with snippets, syntax highlighting, hover, and formatting for Twig.
https://marketplace.visualstudio.com/items?itemName=mblode.twig-language
MIT License
42 stars 7 forks source link

Closing brackets inside html tags #61

Open AlexNodex opened 2 years ago

AlexNodex commented 2 years ago

When adding {{ inside an html tag that's on the same line i/e <textarea>{{</textarea> the auto complete of the closing tag does not fire. It fires fine and auto closes the brackets if the html tag is on more than one line i/e

<textarea>
{{ }}<--- this gets added automatically when the html tag it on multiple lines
</textarea>