Christian Grasser a6103d5de7 Update to scintilla 5.5.3 & Lexilla 5.4.1
Release 5.5.4 (https://www.scintilla.org/scintilla554.zip)

    Released 18 December 2024.
    Update to Unicode 15.1. Issue #285.
    Improve performance of SCI_BRACEMATCH. Feature #1533.
    Improve performance of DBCS text. Feature #1535.
    Fix wrapping removed lines. Bug #2456.
    Fix moving line down to empty final line and moving empty final line up. Bug #2457.
    On GTK, allow middle click to insert multiple times within a document. Geany Issue #2629.

Release 5.4.2 (https://www.scintilla.org/lexilla542.zip)

    Released 18 December 2024.
    Update to Unicode 15.1. Issue #285.
    Lexer added for Nix "nix". Pull request #282.
    JavaScript: Use correct SCE_HJA_TEMPLATELITERAL style for server-side template literals in HTML instead of client-side style. Issue #286.
    JavaScript: Use correct SCE_HJ_SYMBOLS style for '.' after regex instead of SCE_HJ_WORD. Prevent empty word assertion when non-word character after regex flag. Issue #289.
    PHP: Fix unstable lexing with substyled keyword and unterminated string. Issue #288.
    Rust: Add C string and raw C string literal styles SCE_RUST_CSTRING and SCE_RUST_CSTRINGR. Pull request #292, Issue #268.
    TOML: Don't treat keys without values as errors. Pull request #283.
    Zig: Add SCE_ZIG_IDENTIFIER_STRING for identifiers expressed as strings. Pull request #287.

Fix #15817, fix #10528, fix #15801, close #15982
2025-01-08 07:14:08 +01:00

36 lines
1.2 KiB
Plaintext

{2}// coding: utf-8{0}
{21}b"foo"{16};{0} {22}br"foo"{0} {2}// foo{0}
{21}b"\"foo\""{16};{0} {22}br#""foo""#{16};{0} {2}// "foo"{0}
{21}b"foo #\"# bar"{16};{0}
{22}br##"foo #"# bar"##{16};{0} {2}// foo #"# bar{0}
{21}b"\x52"{16};{0} {21}b"R"{16};{0} {22}br"R"{0} {2}// R{0}
{21}b"\\x52"{16};{0} {22}br"\x52"{0} {2}// \x52{0}
{24}c"æ"{0} {2}// LATIN SMALL LETTER AE (U+00E6){0}
{24}c"\u{00E6}"{16};{0}
{24}c"\xC3\xA6"{16};{0}
{24}c"foo"{16};{0} {25}cr"foo"{0} {2}// foo{0}
{24}c"\"foo\""{16};{0} {25}cr#""foo""#{16};{0} {2}// "foo"{0}
{24}c"foo #\"# bar"{16};{0}
{25}cr##"foo #"# bar"##{16};{0} {2}// foo #"# bar{0}
{24}c"\x52"{16};{0} {24}c"R"{16};{0} {25}cr"R"{0} {2}// R{0}
{24}c"\\x52"{16};{0} {25}cr"\x52"{0} {2}// \x52{0}
{13}"foo"{16};{0} {14}r"foo"{0} {2}// foo{0}
{13}"\"foo\""{16};{0} {14}r#""foo""#{16};{0} {2}// "foo"{0}
{13}"foo #\"# bar"{16};{0}
{14}r##"foo #"# bar"##{16};{0} {2}// foo #"# bar{0}
{13}"\x52"{16};{0} {13}"R"{16};{0} {14}r"R"{0} {2}// R{0}
{13}"\\x52"{16};{0} {14}r"\x52"{0} {2}// \x52{0}
{13}"æ"{0} {2}// LATIN SMALL LETTER AE (U+00E6){0}
{13}"\u{00E6}"{16};{0}
{13}"\xC3\xA6"{16};