Merge branch 'fix-unicode-input' of https://github.com/alex-huff/kitty

This commit is contained in:
Kovid Goyal 2025-10-07 08:05:16 +05:30
commit 25e1b052b8
No known key found for this signature in database
GPG key ID: 06BC317B515ACE7C

View file

@ -99,6 +99,9 @@ func find_matching_codepoints(prefix string) (ans mark_set) {
ans.AddItems(marks...)
}
}
if ans == nil {
ans = utils.NewSet[uint16](0)
}
return ans
}