We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 93fe827 commit 0a1573dCopy full SHA for 0a1573d
src/rime/gear/charset_filter.cc
@@ -24,6 +24,7 @@ bool is_extended_cjk(uint32_t ch)
24
(ch >= 0x2B740 && ch <= 0x2B81F) || // CJK Unified Ideographs Extension D
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 >= 0x2F800 && ch <= 0x2FA1F)) // CJK Compatibility Ideographs Supplement
29
return true;
30
0 commit comments