We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 82850eb commit 3cb1128Copy full SHA for 3cb1128
src/rime/gear/charset_filter.cc
@@ -25,6 +25,7 @@ bool is_extended_cjk(uint32_t ch)
25
(ch >= 0x2B820 && ch <= 0x2CEAF) || // CJK Unified Ideographs Extension E
26
(ch >= 0x2CEB0 && ch <= 0x2EBEF) || // CJK Unified Ideographs Extension F
27
(ch >= 0x30000 && ch <= 0x3134F) || // CJK Unified Ideographs Extension G
28
+ (ch >= 0xF900 && ch <= 0xFAFF) || // CJK Compatibility Ideographs
29
(ch >= 0x2F800 && ch <= 0x2FA1F)) // CJK Compatibility Ideographs Supplement
30
return true;
31
0 commit comments