Skip to content

Commit

Permalink
feat(charset_filter): support CJK Unified Ideographs Extension G (#393)
Browse files Browse the repository at this point in the history
  • Loading branch information
Arthurmcarthur authored Jul 27, 2020
1 parent 93fe827 commit 0a1573d
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 @@ -24,6 +24,7 @@ bool is_extended_cjk(uint32_t ch)
(ch >= 0x2B740 && ch <= 0x2B81F) || // CJK Unified Ideographs Extension D
(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 >= 0x2F800 && ch <= 0x2FA1F)) // CJK Compatibility Ideographs Supplement
return true;

Expand Down

0 comments on commit 0a1573d

Please sign in to comment.