phoenixframework / vscode-phoenix

Syntax highlighting support for Phoenix templates in Visual Studio Code.
https://marketplace.visualstudio.com/items?itemName=phoenixframework.phoenix
MIT License
157 stars 10 forks source link

Fix HEEx sigil syntax highlighting in functions #25

Open zolrath opened 2 months ago

zolrath commented 2 months ago

The existing regex prevented the end of a HEEx sigil from being detected if the line had any additional content after the """[modifiers]. This caused highlighting to break if a HEEx sigil was ever passed into a function as """) or """, :more_args) would not be detected by the regex.

Closes #7