Keyboard input: Fix text not being reported as unicode codepoints for multi-byte characters in the kitty keyboard protocol
Fixes #6167
This commit is contained in:
parent
6aa2a7f99d
commit
d4c5b8c899
@ -92,6 +92,8 @@ Detailed list of changes
|
|||||||
|
|
||||||
- Linux Wayland: Fix animated images not being animated continuously (:iss:`6126`)
|
- Linux Wayland: Fix animated images not being animated continuously (:iss:`6126`)
|
||||||
|
|
||||||
|
- Keyboard input: Fix text not being reported as unicode codepoints for multi-byte characters in the kitty keyboard protocol (:iss:`6167`)
|
||||||
|
|
||||||
|
|
||||||
0.27.1 [2023-02-07]
|
0.27.1 [2023-02-07]
|
||||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||||
|
|||||||
@ -88,7 +88,6 @@ serialize(const EncodingData *data, char *output, const char csi_trailer) {
|
|||||||
if (first) { P(";%u", codep); first = false; }
|
if (first) { P(";%u", codep); first = false; }
|
||||||
else P(":%u", codep);
|
else P(":%u", codep);
|
||||||
}
|
}
|
||||||
state = UTF8_ACCEPT;
|
|
||||||
p++;
|
p++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user