STEPS TO REPRODUCE With syntax highlighting mode set to Go, paste this text into Kate. var s string = "A string with \x60 a horse \140 \u2014 \U0001F40E" var c float32 = imag(987i) + 0o_7_7_7 + 0x1.fp-2 type R[T any, C comparable] struct { a T; b C } OBSERVED RESULT In line 1, the escape sequences \u2014 and \U0001F40E (called "little Unicode escapes" and "big Unicode escapes" respectively) are not highlighted in a different color from the string like \x60 and \140. The "i" of "987i" is not highlighted at all and only the 0s of "0o_7_7_7" and "0x1.fp-2" are highlighted. The keywords "any" and "comparable" are not highlighted. EXPECTED RESULT \u2014 and \U0001F40E should be distinguished in a different color from the string. 987i, 0o_7_7_7 and 0x1.fp-2 should all be highlighted start to finish as valid number literals. "any" and "comparable" should be highlighted as predeclared types. SOFTWARE/OS VERSIONS Operating System: Kubuntu 20.04 KDE Plasma Version: 5.18.8 KDE Frameworks Version: 5.68.0 Qt Version: 5.12.8 Kernel Version: 5.11.0-36-generic OS Type: 64-bit ADDITIONAL INFORMATION Go has from the beginning supported escaping a Unicode character in a string with a backslash, the character "u" (lowercase u), and four hexadecimal digits. This syntax is not recognized by Kate. Go has from the beginning supported escaping a Unicode character in a string with a backslash, the character "U" (uppercase U), and eight hexadecimal digits. This syntax is not recognized by Kate. Go 1.13, https://go.dev/doc/go1.13, introduced many new number literal syntaxes: * Binary integer literals with the prefix 0b/0B * Octal integer literals with the prefix 0o/0O * Hexadecimal floating point literals, 0x + a decimal number + "p" + optionally "+" or "-" + * Digit separators, an underscore may be inserted between any two digits, or after the letter in 0b/0o/0x * The ability to suffix the imaginary literal "i" to any literal None of these new syntaxes are supported by Kate. Note also that basic hexadecimal literals, such as 0x1, do not work properly with KDE syntax highlighting in Go. Go 1.18 introduced generic programming and added two new predefined types, "comparable" and "any". They should be highlighted the same color as other predeclared types like "string" and "int".
Hi, might you be interested in contributing a patch to solve these issues? We can't maintain all language definitions on our own. For some introduction how to do that, please see https://invent.kde.org/frameworks/syntax-highlighting/-/blob/master/README.md
A possibly relevant merge request was started @ https://invent.kde.org/frameworks/syntax-highlighting/-/merge_requests/385
Git commit e462713d397525e6b359742125bbee075fdc49ca by Jonathan Poelen. Committed on 09/11/2022 at 01:42. Pushed by cullmann into branch 'master'. Go: improved support for literal numbers, add unicode escape characters and new predefined type - add binary (0b) and octal (0o) prefix - add hedecimal float format (0x1.fp-2) - add imaginary suffix (123i) - add digit separator (1_2_3) - add any and comparable keyword type - add little Unicode escapes ('\uHHHH') and big Unicode escapes ('\uHHHHHHHH') M +7 -0 autotests/folding/test.go.fold M +8 -1 autotests/html/test.go.dark.html M +8 -1 autotests/html/test.go.html M +7 -0 autotests/input/test.go M +8 -1 autotests/reference/test.go.ref M +78 -27 data/syntax/go.xml https://invent.kde.org/frameworks/syntax-highlighting/commit/e462713d397525e6b359742125bbee075fdc49ca