zufuliu / notepad4

Notepad4 (Notepad2⨯2, Notepad2++) is a light-weight Scintilla based text editor for Windows with syntax highlighting, code folding, auto-completion and API list for many programming languages and documents, bundled with file browser plugin matepath.
Other
2.6k stars 184 forks source link

dart: first named parameter not colorized #842

Closed techee closed 3 weeks ago

techee commented 4 weeks ago

In

Screenshot 2024-08-15 at 1 42 24

the bold: and x: should be SCE_DART_KEY like the rest of the keys.

techee commented 4 weeks ago

Just to be easier to copy-paste:

enableFlags(bold: true, hidden: false);
({int x, int y, int z}) point = (x: 1, y: 2, z: 3);
zufuliu commented 4 weeks ago

Fixed by 370f3fa0cbc79099e5ac99d758b0aacd9ebc8645, original purpose is JSON like highlighting for map, not named parameter.