rime输入法配置
在使用微软双拼的环境下
1.扩展词库
double_pinyin_mspy.custom.yaml
(输入法自定义配置文件,其他输入法换为输入法名.custom.yaml
)中加入下面代码:
patch:
# 載入朙月拼音擴充詞庫
"translator/dictionary": luna_pinyin.extended
将luna_pinyin.extended.dict.yaml
、luna_pinyin.dict.yaml
、luna_pinyin.hanyu.yaml
、luna_pinyin.poetry.dict.yaml
和luna_pinyin.cn_en.dict.yaml
五个文件放入用户文件夹。luna_pinyin.extended.dict.yaml
引用了其他四个词库文件。
来源:https://github.com/rime-aca/dictionaries
2.双拼不展开成全拼
double_pinyin_mspy.custom.yawl
(输入法自定义配置文件,其他输入法换为输入法名.custom.yawl
)中加入下面代码:
patch:
#不展开成全拼
translator/preedit_format: []
来源:https://github.com/rime/squirrel/issues/261
3.识别字母+数字的用户名
default.custom.yaml
中加入如下代码:
# 輸入 rime 之後,再輸入任意一個數字,則立即識別爲西文輸入
patch:
recognizer/patterns/rime123: "^rime[0-9]+$"
来源:https://gist.github.com/lotem/3076166
4.某些程序中不使用中文输入法
weasel.custom.yaml
中加入如下代码:
patch:
app_options/bf2cn.exe: #程序
ascii_mode: true
来源:rime定制指南