justinmk / tree-sitter-ini

tree-sitter grammar/parser for INI files
Apache License 2.0
20 stars 10 forks source link

match either ; or # on setting_name #5

Closed duarm closed 1 year ago

duarm commented 1 year ago

We should either match for # or ; on setting_name too, otherwise the highlight breaks with multiples ; style comments or when mixing both

Problem: image image image

Solution: match ;|# on setting_name instead of only #