├── .github └── workflows │ └── release.yml ├── .gitignore ├── LICENSE ├── README.md ├── bingji ├── bingji.png ├── double_pinyin_xh.schema.yaml ├── double_pinyin_zrm.schema.yaml ├── luna_pinyin.dict.yaml ├── luna_pinyin.schema.yaml └── 双拼并击研究.txt ├── cn_dicts_cell ├── luna_pinyin.computer.dict.yaml ├── luna_pinyin.game.dict.yaml ├── luna_pinyin.history.dict.yaml ├── luna_pinyin.movie.dict.yaml ├── luna_pinyin.place.dict.yaml └── luna_pinyin.poetry.dict.yaml ├── cn_dicts_common ├── 4jian_no_conflict.dict.yaml ├── changcijian.dict.yaml ├── changcijian3.dict.yaml ├── chengyu.dict.yaml ├── tencent.dict.yaml ├── tencent_core.dict.yaml └── user.dict.yaml ├── cn_dicts_tiger ├── 41448.dict.yaml ├── 8105.dict.yaml ├── base.dict.yaml ├── ext.dict.yaml └── others.dict.yaml ├── cn_dicts_wb ├── 41448.dict.yaml ├── 8105.dict.yaml ├── base.dict.yaml ├── ext.dict.yaml └── others.dict.yaml ├── cn_dicts_yucloud ├── 41448.dict.yaml ├── 8105.dict.yaml ├── base.dict.yaml ├── ext.dict.yaml └── others.dict.yaml ├── cn_dicts_yustar ├── 41448.dict.yaml ├── 8105.dict.yaml ├── base.dict.yaml ├── ext.dict.yaml └── others.dict.yaml ├── cn_dicts_ziyuan ├── 41448.dict.yaml ├── 8105.dict.yaml ├── base.dict.yaml ├── ext.dict.yaml └── others.dict.yaml ├── custom_phrase ├── custom_phrase.txt ├── custom_phrase_3_code.txt ├── custom_phrase_bj.txt ├── custom_phrase_kf.txt ├── custom_phrase_mqzg.txt ├── custom_phrase_super_1jian.txt ├── custom_phrase_super_2jian.txt ├── custom_phrase_super_3jian.txt ├── custom_phrase_super_3jian_no_conflict.txt ├── custom_phrase_super_4jian_no_conflict.txt ├── custom_phrase_tiger.txt ├── custom_phrase_xhzg.txt ├── custom_phrase_yucloud.txt ├── custom_phrase_yustar.txt └── custom_phrase_ziyuan.txt ├── default.yaml ├── emoji.dict.yaml ├── emoji.schema.yaml ├── lua ├── autocap_filter.lua ├── calculator.lua ├── cn_en_spacer.lua ├── cold_word_drop │ ├── debugtool.lua │ ├── drop_words.lua │ ├── filter.lua │ ├── hide_words.lua │ ├── metatable.lua │ ├── processor.lua │ ├── string.lua │ └── turndown_freq_words.lua ├── corrector.lua ├── date_translator.lua ├── en_spacer.lua ├── is_in_user_dict.lua ├── long_word_filter.lua ├── lunar.lua ├── moran_debug_filter.lua ├── number_translator.lua ├── pin_cand_filter.lua ├── reduce_emoji_filter.lua ├── reduce_english_filter.lua ├── sbxlm │ ├── ascii_composer.lua │ ├── auto_length.lua │ ├── core.lua │ ├── editor.lua │ ├── fix.lua │ ├── hint.lua │ ├── key_binder.lua │ ├── lib.lua │ ├── popping.lua │ ├── postpone.lua │ ├── radicals.lua │ ├── radicals.txt │ ├── select_key_to_comment.lua │ ├── selector.lua │ ├── sp_editor.lua │ ├── upper_case.lua │ └── utils │ │ ├── calculator.lua │ │ ├── datetime.lua │ │ └── number.lua ├── search.lua ├── select_character.lua ├── slash_pop.lua ├── stick.lua ├── t9_preedit.lua ├── unicode.lua └── v_filter.lua ├── md ├── FAQ.md ├── assets │ ├── 1.png │ ├── 10.png │ ├── 11.png │ ├── 12.png │ ├── 13.png │ ├── 14.png │ ├── 15.png │ ├── 16.png │ ├── 17.png │ ├── 18.png │ ├── 19.png │ ├── 2.png │ ├── 20.png │ ├── 21.png │ ├── 22.png │ ├── 23.png │ ├── 24.png │ ├── 25.png │ ├── 26.png │ ├── 27.png │ ├── 28.png │ ├── 3.png │ ├── 4.png │ ├── 5.png │ ├── 6.png │ ├── 7.gif │ ├── 8.png │ └── 9.png ├── bujian.assets │ ├── bujm.png │ ├── hebu.png │ └── moqi-zigen.png ├── bujian.md ├── calc.md ├── fenhaofu.md ├── fuhao.assets │ ├── cy.png │ └── kf.png └── fuhao.md ├── moqi.yaml ├── opencc ├── chinese_english.json ├── chinese_english.txt ├── emoji.json ├── emoji.txt ├── english_chinese.txt ├── martian.json ├── martian.txt ├── moqi_chaifen.json ├── moqi_chaifen.txt ├── moqi_chaifen_all.json ├── moqi_chaifen_all.txt └── others.txt ├── program ├── 2字词频表.txt ├── dazhu │ ├── dazhu.js │ ├── deal_ice_dict_to_dazhu.js │ ├── deal_ice_dict_to_dazhu_moqi.py │ ├── deal_ice_dict_to_dazhu_moqi_chaifen.py │ └── deal_ice_dict_to_dazhu_moqi_single.py ├── deal_ice_dict_to_tencent.py ├── deal_ice_dict_to_wubi_1.py ├── emoji │ └── deal_emoji_dict.py ├── generate_dict_code │ ├── deal_4code_word.py │ ├── deal_moqi_single_chujianrangquan.py │ ├── deal_moqi_single_dict.py │ ├── deal_super_2jian.py │ ├── deal_super_3jian copy.py │ ├── deal_super_3jian.py │ ├── deal_super_3jian_no_conflict.py │ ├── deal_super_4jian_no_conflict.py │ └── deal_super_Njian.py ├── opencc │ ├── deal_e_chinese.py │ └── deal_english.py ├── release │ └── generate_rime_all_schema_zip.py ├── tiger.dict.yaml ├── tiger │ └── deal_ice_dict_to_tiger.py ├── wubi.dict.yaml ├── wubi86.dict.yaml ├── yujoy.full.dict.yaml ├── yustar.full.dict.yaml ├── yustar │ ├── deal_ice_dict_to_yucloud.py │ └── deal_ice_dict_to_yustar.py ├── ziyuan │ └── deal_ice_dict_to_ziyuan.py └── 字源1.28版4码.txt ├── readmeimg ├── Nmoshi.png ├── R123456.png ├── aj.png ├── aw.png ├── bihua.png ├── bujian.png ├── bujian2.png ├── cangjie5.png ├── datetime.png ├── dg-蛋糕.png ├── fantizi.png ├── fh.png ├── huoxingwen.png ├── ink.png ├── jimsu.png ├── jisub.png ├── moqi-shuangpin.png ├── moqi1.jpg ├── moqi2.jpg ├── mq_zg.png ├── ofu.png ├── ofu2.png ├── ofubujm.png ├── qimhzly.png ├── qite.png ├── quanchai.png ├── shoumo-chai.png ├── tiger-cmxw.png ├── tiger-gggg.png ├── tiger-zhusheye.png ├── u2ffb.png ├── v_jsq.png ├── wb-gggj.png ├── wb-zly.png ├── wubi-cmxw.png ├── yustar-cmxw.png ├── yustar-gggj.png ├── zssr.png ├── zy-bashe.png └── zy-chiba.png ├── squirrel.yaml ├── symbols_caps_v.yaml ├── tiger.extended.dict.yaml ├── tiger.schema.yaml ├── wubi86.extended.dict.yaml ├── wubi86.schema.yaml ├── yucloud.extended.dict.yaml ├── yucloud.schema.yaml ├── yustar.extended.dict.yaml ├── yustar.schema.yaml ├── ziyuan.extended.dict.yaml └── ziyuan.schema.yaml /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/README.md -------------------------------------------------------------------------------- /bingji/bingji.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/bingji/bingji.png -------------------------------------------------------------------------------- /bingji/double_pinyin_xh.schema.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/bingji/double_pinyin_xh.schema.yaml -------------------------------------------------------------------------------- /bingji/double_pinyin_zrm.schema.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/bingji/double_pinyin_zrm.schema.yaml -------------------------------------------------------------------------------- /bingji/luna_pinyin.dict.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/bingji/luna_pinyin.dict.yaml -------------------------------------------------------------------------------- /bingji/luna_pinyin.schema.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/bingji/luna_pinyin.schema.yaml -------------------------------------------------------------------------------- /bingji/双拼并击研究.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/bingji/双拼并击研究.txt -------------------------------------------------------------------------------- /cn_dicts_cell/luna_pinyin.computer.dict.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/cn_dicts_cell/luna_pinyin.computer.dict.yaml -------------------------------------------------------------------------------- /cn_dicts_cell/luna_pinyin.game.dict.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/cn_dicts_cell/luna_pinyin.game.dict.yaml -------------------------------------------------------------------------------- /cn_dicts_cell/luna_pinyin.history.dict.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/cn_dicts_cell/luna_pinyin.history.dict.yaml -------------------------------------------------------------------------------- /cn_dicts_cell/luna_pinyin.movie.dict.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/cn_dicts_cell/luna_pinyin.movie.dict.yaml -------------------------------------------------------------------------------- /cn_dicts_cell/luna_pinyin.place.dict.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/cn_dicts_cell/luna_pinyin.place.dict.yaml -------------------------------------------------------------------------------- /cn_dicts_cell/luna_pinyin.poetry.dict.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/cn_dicts_cell/luna_pinyin.poetry.dict.yaml -------------------------------------------------------------------------------- /cn_dicts_common/4jian_no_conflict.dict.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/cn_dicts_common/4jian_no_conflict.dict.yaml -------------------------------------------------------------------------------- /cn_dicts_common/changcijian.dict.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/cn_dicts_common/changcijian.dict.yaml -------------------------------------------------------------------------------- /cn_dicts_common/changcijian3.dict.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/cn_dicts_common/changcijian3.dict.yaml -------------------------------------------------------------------------------- /cn_dicts_common/chengyu.dict.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/cn_dicts_common/chengyu.dict.yaml -------------------------------------------------------------------------------- /cn_dicts_common/tencent.dict.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/cn_dicts_common/tencent.dict.yaml -------------------------------------------------------------------------------- /cn_dicts_common/tencent_core.dict.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/cn_dicts_common/tencent_core.dict.yaml -------------------------------------------------------------------------------- /cn_dicts_common/user.dict.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/cn_dicts_common/user.dict.yaml -------------------------------------------------------------------------------- /cn_dicts_tiger/41448.dict.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/cn_dicts_tiger/41448.dict.yaml -------------------------------------------------------------------------------- /cn_dicts_tiger/8105.dict.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/cn_dicts_tiger/8105.dict.yaml -------------------------------------------------------------------------------- /cn_dicts_tiger/base.dict.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/cn_dicts_tiger/base.dict.yaml -------------------------------------------------------------------------------- /cn_dicts_tiger/ext.dict.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/cn_dicts_tiger/ext.dict.yaml -------------------------------------------------------------------------------- /cn_dicts_tiger/others.dict.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/cn_dicts_tiger/others.dict.yaml -------------------------------------------------------------------------------- /cn_dicts_wb/41448.dict.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/cn_dicts_wb/41448.dict.yaml -------------------------------------------------------------------------------- /cn_dicts_wb/8105.dict.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/cn_dicts_wb/8105.dict.yaml -------------------------------------------------------------------------------- /cn_dicts_wb/base.dict.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/cn_dicts_wb/base.dict.yaml -------------------------------------------------------------------------------- /cn_dicts_wb/ext.dict.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/cn_dicts_wb/ext.dict.yaml -------------------------------------------------------------------------------- /cn_dicts_wb/others.dict.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/cn_dicts_wb/others.dict.yaml -------------------------------------------------------------------------------- /cn_dicts_yucloud/41448.dict.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/cn_dicts_yucloud/41448.dict.yaml -------------------------------------------------------------------------------- /cn_dicts_yucloud/8105.dict.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/cn_dicts_yucloud/8105.dict.yaml -------------------------------------------------------------------------------- /cn_dicts_yucloud/base.dict.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/cn_dicts_yucloud/base.dict.yaml -------------------------------------------------------------------------------- /cn_dicts_yucloud/ext.dict.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/cn_dicts_yucloud/ext.dict.yaml -------------------------------------------------------------------------------- /cn_dicts_yucloud/others.dict.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/cn_dicts_yucloud/others.dict.yaml -------------------------------------------------------------------------------- /cn_dicts_yustar/41448.dict.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/cn_dicts_yustar/41448.dict.yaml -------------------------------------------------------------------------------- /cn_dicts_yustar/8105.dict.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/cn_dicts_yustar/8105.dict.yaml -------------------------------------------------------------------------------- /cn_dicts_yustar/base.dict.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/cn_dicts_yustar/base.dict.yaml -------------------------------------------------------------------------------- /cn_dicts_yustar/ext.dict.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/cn_dicts_yustar/ext.dict.yaml -------------------------------------------------------------------------------- /cn_dicts_yustar/others.dict.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/cn_dicts_yustar/others.dict.yaml -------------------------------------------------------------------------------- /cn_dicts_ziyuan/41448.dict.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/cn_dicts_ziyuan/41448.dict.yaml -------------------------------------------------------------------------------- /cn_dicts_ziyuan/8105.dict.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/cn_dicts_ziyuan/8105.dict.yaml -------------------------------------------------------------------------------- /cn_dicts_ziyuan/base.dict.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/cn_dicts_ziyuan/base.dict.yaml -------------------------------------------------------------------------------- /cn_dicts_ziyuan/ext.dict.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/cn_dicts_ziyuan/ext.dict.yaml -------------------------------------------------------------------------------- /cn_dicts_ziyuan/others.dict.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/cn_dicts_ziyuan/others.dict.yaml -------------------------------------------------------------------------------- /custom_phrase/custom_phrase.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/custom_phrase/custom_phrase.txt -------------------------------------------------------------------------------- /custom_phrase/custom_phrase_3_code.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/custom_phrase/custom_phrase_3_code.txt -------------------------------------------------------------------------------- /custom_phrase/custom_phrase_bj.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/custom_phrase/custom_phrase_bj.txt -------------------------------------------------------------------------------- /custom_phrase/custom_phrase_kf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/custom_phrase/custom_phrase_kf.txt -------------------------------------------------------------------------------- /custom_phrase/custom_phrase_mqzg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/custom_phrase/custom_phrase_mqzg.txt -------------------------------------------------------------------------------- /custom_phrase/custom_phrase_super_1jian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/custom_phrase/custom_phrase_super_1jian.txt -------------------------------------------------------------------------------- /custom_phrase/custom_phrase_super_2jian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/custom_phrase/custom_phrase_super_2jian.txt -------------------------------------------------------------------------------- /custom_phrase/custom_phrase_super_3jian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/custom_phrase/custom_phrase_super_3jian.txt -------------------------------------------------------------------------------- /custom_phrase/custom_phrase_super_3jian_no_conflict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/custom_phrase/custom_phrase_super_3jian_no_conflict.txt -------------------------------------------------------------------------------- /custom_phrase/custom_phrase_super_4jian_no_conflict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/custom_phrase/custom_phrase_super_4jian_no_conflict.txt -------------------------------------------------------------------------------- /custom_phrase/custom_phrase_tiger.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/custom_phrase/custom_phrase_tiger.txt -------------------------------------------------------------------------------- /custom_phrase/custom_phrase_xhzg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/custom_phrase/custom_phrase_xhzg.txt -------------------------------------------------------------------------------- /custom_phrase/custom_phrase_yucloud.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/custom_phrase/custom_phrase_yucloud.txt -------------------------------------------------------------------------------- /custom_phrase/custom_phrase_yustar.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/custom_phrase/custom_phrase_yustar.txt -------------------------------------------------------------------------------- /custom_phrase/custom_phrase_ziyuan.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/custom_phrase/custom_phrase_ziyuan.txt -------------------------------------------------------------------------------- /default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/default.yaml -------------------------------------------------------------------------------- /emoji.dict.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/emoji.dict.yaml -------------------------------------------------------------------------------- /emoji.schema.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/emoji.schema.yaml -------------------------------------------------------------------------------- /lua/autocap_filter.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/lua/autocap_filter.lua -------------------------------------------------------------------------------- /lua/calculator.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/lua/calculator.lua -------------------------------------------------------------------------------- /lua/cn_en_spacer.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/lua/cn_en_spacer.lua -------------------------------------------------------------------------------- /lua/cold_word_drop/debugtool.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/lua/cold_word_drop/debugtool.lua -------------------------------------------------------------------------------- /lua/cold_word_drop/drop_words.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/lua/cold_word_drop/drop_words.lua -------------------------------------------------------------------------------- /lua/cold_word_drop/filter.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/lua/cold_word_drop/filter.lua -------------------------------------------------------------------------------- /lua/cold_word_drop/hide_words.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/lua/cold_word_drop/hide_words.lua -------------------------------------------------------------------------------- /lua/cold_word_drop/metatable.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/lua/cold_word_drop/metatable.lua -------------------------------------------------------------------------------- /lua/cold_word_drop/processor.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/lua/cold_word_drop/processor.lua -------------------------------------------------------------------------------- /lua/cold_word_drop/string.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/lua/cold_word_drop/string.lua -------------------------------------------------------------------------------- /lua/cold_word_drop/turndown_freq_words.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/lua/cold_word_drop/turndown_freq_words.lua -------------------------------------------------------------------------------- /lua/corrector.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/lua/corrector.lua -------------------------------------------------------------------------------- /lua/date_translator.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/lua/date_translator.lua -------------------------------------------------------------------------------- /lua/en_spacer.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/lua/en_spacer.lua -------------------------------------------------------------------------------- /lua/is_in_user_dict.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/lua/is_in_user_dict.lua -------------------------------------------------------------------------------- /lua/long_word_filter.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/lua/long_word_filter.lua -------------------------------------------------------------------------------- /lua/lunar.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/lua/lunar.lua -------------------------------------------------------------------------------- /lua/moran_debug_filter.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/lua/moran_debug_filter.lua -------------------------------------------------------------------------------- /lua/number_translator.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/lua/number_translator.lua -------------------------------------------------------------------------------- /lua/pin_cand_filter.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/lua/pin_cand_filter.lua -------------------------------------------------------------------------------- /lua/reduce_emoji_filter.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/lua/reduce_emoji_filter.lua -------------------------------------------------------------------------------- /lua/reduce_english_filter.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/lua/reduce_english_filter.lua -------------------------------------------------------------------------------- /lua/sbxlm/ascii_composer.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/lua/sbxlm/ascii_composer.lua -------------------------------------------------------------------------------- /lua/sbxlm/auto_length.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/lua/sbxlm/auto_length.lua -------------------------------------------------------------------------------- /lua/sbxlm/core.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/lua/sbxlm/core.lua -------------------------------------------------------------------------------- /lua/sbxlm/editor.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/lua/sbxlm/editor.lua -------------------------------------------------------------------------------- /lua/sbxlm/fix.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/lua/sbxlm/fix.lua -------------------------------------------------------------------------------- /lua/sbxlm/hint.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/lua/sbxlm/hint.lua -------------------------------------------------------------------------------- /lua/sbxlm/key_binder.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/lua/sbxlm/key_binder.lua -------------------------------------------------------------------------------- /lua/sbxlm/lib.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/lua/sbxlm/lib.lua -------------------------------------------------------------------------------- /lua/sbxlm/popping.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/lua/sbxlm/popping.lua -------------------------------------------------------------------------------- /lua/sbxlm/postpone.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/lua/sbxlm/postpone.lua -------------------------------------------------------------------------------- /lua/sbxlm/radicals.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/lua/sbxlm/radicals.lua -------------------------------------------------------------------------------- /lua/sbxlm/radicals.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/lua/sbxlm/radicals.txt -------------------------------------------------------------------------------- /lua/sbxlm/select_key_to_comment.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/lua/sbxlm/select_key_to_comment.lua -------------------------------------------------------------------------------- /lua/sbxlm/selector.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/lua/sbxlm/selector.lua -------------------------------------------------------------------------------- /lua/sbxlm/sp_editor.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/lua/sbxlm/sp_editor.lua -------------------------------------------------------------------------------- /lua/sbxlm/upper_case.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/lua/sbxlm/upper_case.lua -------------------------------------------------------------------------------- /lua/sbxlm/utils/calculator.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/lua/sbxlm/utils/calculator.lua -------------------------------------------------------------------------------- /lua/sbxlm/utils/datetime.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/lua/sbxlm/utils/datetime.lua -------------------------------------------------------------------------------- /lua/sbxlm/utils/number.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/lua/sbxlm/utils/number.lua -------------------------------------------------------------------------------- /lua/search.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/lua/search.lua -------------------------------------------------------------------------------- /lua/select_character.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/lua/select_character.lua -------------------------------------------------------------------------------- /lua/slash_pop.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/lua/slash_pop.lua -------------------------------------------------------------------------------- /lua/stick.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/lua/stick.lua -------------------------------------------------------------------------------- /lua/t9_preedit.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/lua/t9_preedit.lua -------------------------------------------------------------------------------- /lua/unicode.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/lua/unicode.lua -------------------------------------------------------------------------------- /lua/v_filter.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/lua/v_filter.lua -------------------------------------------------------------------------------- /md/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/md/FAQ.md -------------------------------------------------------------------------------- /md/assets/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/md/assets/1.png -------------------------------------------------------------------------------- /md/assets/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/md/assets/10.png -------------------------------------------------------------------------------- /md/assets/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/md/assets/11.png -------------------------------------------------------------------------------- /md/assets/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/md/assets/12.png -------------------------------------------------------------------------------- /md/assets/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/md/assets/13.png -------------------------------------------------------------------------------- /md/assets/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/md/assets/14.png -------------------------------------------------------------------------------- /md/assets/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/md/assets/15.png -------------------------------------------------------------------------------- /md/assets/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/md/assets/16.png -------------------------------------------------------------------------------- /md/assets/17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/md/assets/17.png -------------------------------------------------------------------------------- /md/assets/18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/md/assets/18.png -------------------------------------------------------------------------------- /md/assets/19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/md/assets/19.png -------------------------------------------------------------------------------- /md/assets/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/md/assets/2.png -------------------------------------------------------------------------------- /md/assets/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/md/assets/20.png -------------------------------------------------------------------------------- /md/assets/21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/md/assets/21.png -------------------------------------------------------------------------------- /md/assets/22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/md/assets/22.png -------------------------------------------------------------------------------- /md/assets/23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/md/assets/23.png -------------------------------------------------------------------------------- /md/assets/24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/md/assets/24.png -------------------------------------------------------------------------------- /md/assets/25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/md/assets/25.png -------------------------------------------------------------------------------- /md/assets/26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/md/assets/26.png -------------------------------------------------------------------------------- /md/assets/27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/md/assets/27.png -------------------------------------------------------------------------------- /md/assets/28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/md/assets/28.png -------------------------------------------------------------------------------- /md/assets/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/md/assets/3.png -------------------------------------------------------------------------------- /md/assets/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/md/assets/4.png -------------------------------------------------------------------------------- /md/assets/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/md/assets/5.png -------------------------------------------------------------------------------- /md/assets/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/md/assets/6.png -------------------------------------------------------------------------------- /md/assets/7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/md/assets/7.gif -------------------------------------------------------------------------------- /md/assets/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/md/assets/8.png -------------------------------------------------------------------------------- /md/assets/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/md/assets/9.png -------------------------------------------------------------------------------- /md/bujian.assets/bujm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/md/bujian.assets/bujm.png -------------------------------------------------------------------------------- /md/bujian.assets/hebu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/md/bujian.assets/hebu.png -------------------------------------------------------------------------------- /md/bujian.assets/moqi-zigen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/md/bujian.assets/moqi-zigen.png -------------------------------------------------------------------------------- /md/bujian.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/md/bujian.md -------------------------------------------------------------------------------- /md/calc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/md/calc.md -------------------------------------------------------------------------------- /md/fenhaofu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/md/fenhaofu.md -------------------------------------------------------------------------------- /md/fuhao.assets/cy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/md/fuhao.assets/cy.png -------------------------------------------------------------------------------- /md/fuhao.assets/kf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/md/fuhao.assets/kf.png -------------------------------------------------------------------------------- /md/fuhao.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/md/fuhao.md -------------------------------------------------------------------------------- /moqi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/moqi.yaml -------------------------------------------------------------------------------- /opencc/chinese_english.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/opencc/chinese_english.json -------------------------------------------------------------------------------- /opencc/chinese_english.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/opencc/chinese_english.txt -------------------------------------------------------------------------------- /opencc/emoji.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/opencc/emoji.json -------------------------------------------------------------------------------- /opencc/emoji.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/opencc/emoji.txt -------------------------------------------------------------------------------- /opencc/english_chinese.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/opencc/english_chinese.txt -------------------------------------------------------------------------------- /opencc/martian.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/opencc/martian.json -------------------------------------------------------------------------------- /opencc/martian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/opencc/martian.txt -------------------------------------------------------------------------------- /opencc/moqi_chaifen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/opencc/moqi_chaifen.json -------------------------------------------------------------------------------- /opencc/moqi_chaifen.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/opencc/moqi_chaifen.txt -------------------------------------------------------------------------------- /opencc/moqi_chaifen_all.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/opencc/moqi_chaifen_all.json -------------------------------------------------------------------------------- /opencc/moqi_chaifen_all.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/opencc/moqi_chaifen_all.txt -------------------------------------------------------------------------------- /opencc/others.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/opencc/others.txt -------------------------------------------------------------------------------- /program/2字词频表.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/program/2字词频表.txt -------------------------------------------------------------------------------- /program/dazhu/dazhu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/program/dazhu/dazhu.js -------------------------------------------------------------------------------- /program/dazhu/deal_ice_dict_to_dazhu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/program/dazhu/deal_ice_dict_to_dazhu.js -------------------------------------------------------------------------------- /program/dazhu/deal_ice_dict_to_dazhu_moqi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/program/dazhu/deal_ice_dict_to_dazhu_moqi.py -------------------------------------------------------------------------------- /program/dazhu/deal_ice_dict_to_dazhu_moqi_chaifen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/program/dazhu/deal_ice_dict_to_dazhu_moqi_chaifen.py -------------------------------------------------------------------------------- /program/dazhu/deal_ice_dict_to_dazhu_moqi_single.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/program/dazhu/deal_ice_dict_to_dazhu_moqi_single.py -------------------------------------------------------------------------------- /program/deal_ice_dict_to_tencent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/program/deal_ice_dict_to_tencent.py -------------------------------------------------------------------------------- /program/deal_ice_dict_to_wubi_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/program/deal_ice_dict_to_wubi_1.py -------------------------------------------------------------------------------- /program/emoji/deal_emoji_dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/program/emoji/deal_emoji_dict.py -------------------------------------------------------------------------------- /program/generate_dict_code/deal_4code_word.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/program/generate_dict_code/deal_4code_word.py -------------------------------------------------------------------------------- /program/generate_dict_code/deal_moqi_single_chujianrangquan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/program/generate_dict_code/deal_moqi_single_chujianrangquan.py -------------------------------------------------------------------------------- /program/generate_dict_code/deal_moqi_single_dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/program/generate_dict_code/deal_moqi_single_dict.py -------------------------------------------------------------------------------- /program/generate_dict_code/deal_super_2jian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/program/generate_dict_code/deal_super_2jian.py -------------------------------------------------------------------------------- /program/generate_dict_code/deal_super_3jian copy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/program/generate_dict_code/deal_super_3jian copy.py -------------------------------------------------------------------------------- /program/generate_dict_code/deal_super_3jian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/program/generate_dict_code/deal_super_3jian.py -------------------------------------------------------------------------------- /program/generate_dict_code/deal_super_3jian_no_conflict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/program/generate_dict_code/deal_super_3jian_no_conflict.py -------------------------------------------------------------------------------- /program/generate_dict_code/deal_super_4jian_no_conflict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/program/generate_dict_code/deal_super_4jian_no_conflict.py -------------------------------------------------------------------------------- /program/generate_dict_code/deal_super_Njian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/program/generate_dict_code/deal_super_Njian.py -------------------------------------------------------------------------------- /program/opencc/deal_e_chinese.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/program/opencc/deal_e_chinese.py -------------------------------------------------------------------------------- /program/opencc/deal_english.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/program/opencc/deal_english.py -------------------------------------------------------------------------------- /program/release/generate_rime_all_schema_zip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/program/release/generate_rime_all_schema_zip.py -------------------------------------------------------------------------------- /program/tiger.dict.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/program/tiger.dict.yaml -------------------------------------------------------------------------------- /program/tiger/deal_ice_dict_to_tiger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/program/tiger/deal_ice_dict_to_tiger.py -------------------------------------------------------------------------------- /program/wubi.dict.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/program/wubi.dict.yaml -------------------------------------------------------------------------------- /program/wubi86.dict.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/program/wubi86.dict.yaml -------------------------------------------------------------------------------- /program/yujoy.full.dict.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/program/yujoy.full.dict.yaml -------------------------------------------------------------------------------- /program/yustar.full.dict.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/program/yustar.full.dict.yaml -------------------------------------------------------------------------------- /program/yustar/deal_ice_dict_to_yucloud.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/program/yustar/deal_ice_dict_to_yucloud.py -------------------------------------------------------------------------------- /program/yustar/deal_ice_dict_to_yustar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/program/yustar/deal_ice_dict_to_yustar.py -------------------------------------------------------------------------------- /program/ziyuan/deal_ice_dict_to_ziyuan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/program/ziyuan/deal_ice_dict_to_ziyuan.py -------------------------------------------------------------------------------- /program/字源1.28版4码.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/program/字源1.28版4码.txt -------------------------------------------------------------------------------- /readmeimg/Nmoshi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/readmeimg/Nmoshi.png -------------------------------------------------------------------------------- /readmeimg/R123456.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/readmeimg/R123456.png -------------------------------------------------------------------------------- /readmeimg/aj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/readmeimg/aj.png -------------------------------------------------------------------------------- /readmeimg/aw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/readmeimg/aw.png -------------------------------------------------------------------------------- /readmeimg/bihua.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/readmeimg/bihua.png -------------------------------------------------------------------------------- /readmeimg/bujian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/readmeimg/bujian.png -------------------------------------------------------------------------------- /readmeimg/bujian2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/readmeimg/bujian2.png -------------------------------------------------------------------------------- /readmeimg/cangjie5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/readmeimg/cangjie5.png -------------------------------------------------------------------------------- /readmeimg/datetime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/readmeimg/datetime.png -------------------------------------------------------------------------------- /readmeimg/dg-蛋糕.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/readmeimg/dg-蛋糕.png -------------------------------------------------------------------------------- /readmeimg/fantizi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/readmeimg/fantizi.png -------------------------------------------------------------------------------- /readmeimg/fh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/readmeimg/fh.png -------------------------------------------------------------------------------- /readmeimg/huoxingwen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/readmeimg/huoxingwen.png -------------------------------------------------------------------------------- /readmeimg/ink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/readmeimg/ink.png -------------------------------------------------------------------------------- /readmeimg/jimsu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/readmeimg/jimsu.png -------------------------------------------------------------------------------- /readmeimg/jisub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/readmeimg/jisub.png -------------------------------------------------------------------------------- /readmeimg/moqi-shuangpin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/readmeimg/moqi-shuangpin.png -------------------------------------------------------------------------------- /readmeimg/moqi1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/readmeimg/moqi1.jpg -------------------------------------------------------------------------------- /readmeimg/moqi2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/readmeimg/moqi2.jpg -------------------------------------------------------------------------------- /readmeimg/mq_zg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/readmeimg/mq_zg.png -------------------------------------------------------------------------------- /readmeimg/ofu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/readmeimg/ofu.png -------------------------------------------------------------------------------- /readmeimg/ofu2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/readmeimg/ofu2.png -------------------------------------------------------------------------------- /readmeimg/ofubujm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/readmeimg/ofubujm.png -------------------------------------------------------------------------------- /readmeimg/qimhzly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/readmeimg/qimhzly.png -------------------------------------------------------------------------------- /readmeimg/qite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/readmeimg/qite.png -------------------------------------------------------------------------------- /readmeimg/quanchai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/readmeimg/quanchai.png -------------------------------------------------------------------------------- /readmeimg/shoumo-chai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/readmeimg/shoumo-chai.png -------------------------------------------------------------------------------- /readmeimg/tiger-cmxw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/readmeimg/tiger-cmxw.png -------------------------------------------------------------------------------- /readmeimg/tiger-gggg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/readmeimg/tiger-gggg.png -------------------------------------------------------------------------------- /readmeimg/tiger-zhusheye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/readmeimg/tiger-zhusheye.png -------------------------------------------------------------------------------- /readmeimg/u2ffb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/readmeimg/u2ffb.png -------------------------------------------------------------------------------- /readmeimg/v_jsq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/readmeimg/v_jsq.png -------------------------------------------------------------------------------- /readmeimg/wb-gggj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/readmeimg/wb-gggj.png -------------------------------------------------------------------------------- /readmeimg/wb-zly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/readmeimg/wb-zly.png -------------------------------------------------------------------------------- /readmeimg/wubi-cmxw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/readmeimg/wubi-cmxw.png -------------------------------------------------------------------------------- /readmeimg/yustar-cmxw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/readmeimg/yustar-cmxw.png -------------------------------------------------------------------------------- /readmeimg/yustar-gggj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/readmeimg/yustar-gggj.png -------------------------------------------------------------------------------- /readmeimg/zssr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/readmeimg/zssr.png -------------------------------------------------------------------------------- /readmeimg/zy-bashe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/readmeimg/zy-bashe.png -------------------------------------------------------------------------------- /readmeimg/zy-chiba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/readmeimg/zy-chiba.png -------------------------------------------------------------------------------- /squirrel.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/squirrel.yaml -------------------------------------------------------------------------------- /symbols_caps_v.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/symbols_caps_v.yaml -------------------------------------------------------------------------------- /tiger.extended.dict.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/tiger.extended.dict.yaml -------------------------------------------------------------------------------- /tiger.schema.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/tiger.schema.yaml -------------------------------------------------------------------------------- /wubi86.extended.dict.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/wubi86.extended.dict.yaml -------------------------------------------------------------------------------- /wubi86.schema.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/wubi86.schema.yaml -------------------------------------------------------------------------------- /yucloud.extended.dict.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/yucloud.extended.dict.yaml -------------------------------------------------------------------------------- /yucloud.schema.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/yucloud.schema.yaml -------------------------------------------------------------------------------- /yustar.extended.dict.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/yustar.extended.dict.yaml -------------------------------------------------------------------------------- /yustar.schema.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/yustar.schema.yaml -------------------------------------------------------------------------------- /ziyuan.extended.dict.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/ziyuan.extended.dict.yaml -------------------------------------------------------------------------------- /ziyuan.schema.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaboolic/rime-wubi-sentence/HEAD/ziyuan.schema.yaml --------------------------------------------------------------------------------