ScintillaOrg / lexilla

A library of language lexers for use with Scintilla
https://www.scintilla.org/Lexilla.html
Other
186 stars 67 forks source link

TOML: Don't treat keys without values as errors #283

Open techee opened 1 month ago

techee commented 1 month ago

While keys without = are not allowed in TOML, this situation happens all the time while editing a TOML file (until one types = after key) which produces annoying error-colorization and then re-colorization after = is inserted.

Better to allow this at the lexer level and leave the error detection job to various linters.

nyamatongwe commented 1 month ago

It's likely this will have to wait until after the 5.4.1 release.

techee commented 1 month ago

No problem.