This commit is contained in:
Dvel 2023-05-09 21:19:59 +08:00
parent f3c2d24aa6
commit cc18b81f0a
6 changed files with 13 additions and 4 deletions

View File

@ -8,7 +8,7 @@
#
# 全拼的自定义文本和双拼有些冲突,改成了 custom_phrase_double ,需要创建 custom_phrase_double.txt 文件。
#
# 中英混输词库 en_dicts/cn_en.dict.yaml 可以删除或修改,里面是写死了的全拼+英文编码
# 默认启用的中英混输词库是全拼的,需要在 melt_eng.dict.yaml 中修改为对应的双拼的
# 方案说明

View File

@ -8,7 +8,7 @@
#
# 全拼的自定义文本和双拼有些冲突,改成了 custom_phrase_double ,需要创建 custom_phrase_double.txt 文件。
#
# 中英混输词库 en_dicts/cn_en.dict.yaml 可以删除或修改,里面是写死了的全拼+英文编码
# 默认启用的中英混输词库是全拼的,需要在 melt_eng.dict.yaml 中修改为对应的双拼的
# 方案说明

View File

@ -8,7 +8,7 @@
#
# 全拼的自定义文本和双拼有些冲突,改成了 custom_phrase_double ,需要创建 custom_phrase_double.txt 文件。
#
# 中英混输词库 en_dicts/cn_en.dict.yaml 可以删除或修改,里面是写死了的全拼+英文编码
# 默认启用的中英混输词库是全拼的,需要在 melt_eng.dict.yaml 中修改为对应的双拼的
# 方案说明

View File

@ -8,7 +8,7 @@
#
# 全拼的自定义文本和双拼有些冲突,改成了 custom_phrase_double ,需要创建 custom_phrase_double.txt 文件。
#
# 中英混输词库 en_dicts/cn_en.dict.yaml 可以删除或修改,里面是写死了的全拼+英文编码
# 默认启用的中英混输词库是全拼的,需要在 melt_eng.dict.yaml 中修改为对应的双拼的
# 方案说明

View File

@ -17,4 +17,5 @@ import_tables:
# - en_dicts/cn_en_double_pinyin_flypy # 小鹤双拼
# - en_dicts/cn_en_double_pinyin_mspy # 微软双拼
# - en_dicts/cn_en_double_pinyin_ziguang # 紫光双拼
# - en_dicts/cn_en_double_pinyin_abc # 智能 ABC 双拼
...

View File

@ -1,12 +1,20 @@
-- Rime Lua 扩展 https://github.com/hchunhui/librime-lua
-- 文档 https://github.com/hchunhui/librime-lua/wiki/Scripting
-- 以词定字
select_character = require("select_character")
-- 日期时间
date_translator = require("date_translator")
-- Unicode
unicode = require("unicode")
-- 为用户词典中(输入过)的内容结尾加上一个星号
is_in_user_dict = require("is_in_user_dict")
-- v 模式 symbols 优先
v_filter = require("v_filter")
-- 降低部分英语单词在候选项的位置
reduce_english_filter = require("reduce_english_filter")
-- 长词优先
long_word_filter = require("long_word_filter")
-- 词条隐藏、降频
cold_word_drop_processor = require("cold_word_drop.processor")
cold_word_drop_filter = require("cold_word_drop.filter")