Skip to content

Commit

Permalink
feat(chareset_filter): add CJK Compatibility Ideographs in is_extende…
Browse files Browse the repository at this point in the history
  • Loading branch information
lotem committed Jan 1, 2021
1 parent 82850eb commit 3cb1128
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/rime/gear/charset_filter.cc
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ bool is_extended_cjk(uint32_t ch)
(ch >= 0x2B820 && ch <= 0x2CEAF) || // CJK Unified Ideographs Extension E
(ch >= 0x2CEB0 && ch <= 0x2EBEF) || // CJK Unified Ideographs Extension F
(ch >= 0x30000 && ch <= 0x3134F) || // CJK Unified Ideographs Extension G
(ch >= 0xF900 && ch <= 0xFAFF) || // CJK Compatibility Ideographs
(ch >= 0x2F800 && ch <= 0x2FA1F)) // CJK Compatibility Ideographs Supplement
return true;

Expand Down

0 comments on commit 3cb1128

Please sign in to comment.