Start work on a choose kitten for fuzzy selection

This commit is contained in:
Kovid Goyal
2019-01-23 19:38:08 +05:30
parent 8ceb941051
commit 19bce0c23c
11 changed files with 848 additions and 7 deletions

2
kitty/charsets.c generated
View File

@@ -243,7 +243,7 @@ decode_utf8(uint32_t* state, uint32_t* codep, uint8_t byte) {
}
size_t
decode_utf8_string(char *src, size_t sz, uint32_t *dest) {
decode_utf8_string(const char *src, size_t sz, uint32_t *dest) {
// dest must be a zeroed array of size at least sz
uint32_t codep = 0, state = 0, prev = UTF8_ACCEPT;
size_t i, d;