Skip to content

Commit 0a1573d

Browse files
feat(charset_filter): support CJK Unified Ideographs Extension G (#393)
1 parent 93fe827 commit 0a1573d

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/rime/gear/charset_filter.cc

+1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ bool is_extended_cjk(uint32_t ch)
2424
(ch >= 0x2B740 && ch <= 0x2B81F) || // CJK Unified Ideographs Extension D
2525
(ch >= 0x2B820 && ch <= 0x2CEAF) || // CJK Unified Ideographs Extension E
2626
(ch >= 0x2CEB0 && ch <= 0x2EBEF) || // CJK Unified Ideographs Extension F
27+
(ch >= 0x30000 && ch <= 0x3134F) || // CJK Unified Ideographs Extension G
2728
(ch >= 0x2F800 && ch <= 0x2FA1F)) // CJK Compatibility Ideographs Supplement
2829
return true;
2930

0 commit comments

Comments
 (0)