rime-weasel输入法调教
# 官网
# 用户数据文件夹
C:\Users${user}\AppData\Roaming\Rime
# 文件结构
# 统一标识
├── default.custom.yaml # 全局配置
├── squirrel.custom.yaml # 外观定制
├── custom_phrase.txt # 个人短语定制
├── <词库名>.userdb # 记录用户用字习惯中的文件夹(自动生成)
├── installation.yaml # 安装信息
├── user.yaml # 用户状态信息
├── build # 部署输入方案时产生文件所在的文件夹
├── <方案标识>.schema.yaml # 预设输入方案
├── <方案标识>.custom.yaml # 用户对预设输入方案的定制信息
├── <词库名>.dict.yaml # 主词库
├── <词库名>.extended.dict.yaml # 副词库
├── <词库名>.cn_en.dict.yaml # 副词库 - 中英文混合短语
├── <词库名>.hanyu.dict.yaml # 副词库 - 汉语大词典
├── <词库名>.poetry.dict.yaml # 副词库 - 唐诗宋词、千家集、楚辞、诗经
└── <词库名>.sgmain.dict.yaml # 副词库 - 电脑软件分类、计算机术语、全国省地市区县地名、穴位、西药药名、经典小说、音乐专业词库、网络流行新词
# default.custom.yaml
# 全局样式、功能的设置
patch:
schema_list: # 输入方案列表
- schema: luna_pinyin # 全拼
switcher:
hotkeys: #调出方案菜单
- "Control+grave" # 注意是control+`,不是command+`
save_options:
- full_shape
- ascii_punct
- simplification
- zh_hans
- emoji_suggestion
# 以下软件默认英文模式
app_options:
gvim.exe:
ascii_mode: true
tcmatch64.exe:
ascii_mode: true
totalcmd64.exe:
ascii_mode: true
findandrunrobot.exe:
ascii_mode: true
style: # 样式
horizontal: false #横排显示
font_face: "JetBrainsMonoMedium NF" #字体
font_point: 20 #字体大小
inline_preedit: true # 嵌入式候选窗单行显示
menu:
page_size: 9 # 候选字每页个数
ascii_composer: # 设置caps、shift、control等键的作用
good_old_caps_lock: true # 若为true,caps只切换大小写
switch_key:
Shift_L: commit_code # 左shift直接上屏
Shift_R: commit_code # 右shift直接上屏
Control_L: noop # 左control不做操作
Control_R: noop # 右control不做操作
Caps_Lock: commit_code # 大写键直接上屏
Eisu_toggle: clear # esc清除当前输入内容
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
编辑 (opens new window)
上次更新: 2024-11-06, 19:27:10