| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- patch:
- schema_list:
- - schema: rime_frost # 白霜拼音(全拼)
- # 菜单
- menu:
- page_size: 8 # 候选词个数
- # 方案选单相关
- switcher:
- caption: 「方案选单」
- hotkeys:
- - F4
- - Control+grave
- - Control+Shift+grave
- # - Alt+grave
- save_options: # 开关记忆(方案中的 switches),从方案选单(而非快捷键)切换时会记住的选项,需要记忆的开关不能设定 reset
- - ascii_punct
- - traditionalization
- - emoji
- - full_shape
- - search_single_char
- fold_options: false # 呼出时是否折叠,多方案时建议折叠 true ,一个方案建议展开 false
- abbreviate_options: true # 折叠时是否缩写选项
- option_list_separator: " / " # 折叠时的选项分隔符
- key_binder:
- # Lua 配置: 以词定字(上屏当前词句的第一个或最后一个字),和中括号翻页有冲突
- select_first_character: "bracketleft" # 左中括号 [
- select_last_character: "bracketright" # 右中括号 ]
- reduce_freq_cand: "Control+j" # 匹配当前输入码后隐藏指定的候选字词 或候选词条放到第四候选位置
- drop_cand: "Control+d" # 强制删词, 无视输入的编码
- bindings:
- # Tab / Shift+Tab 切换光标至下/上一个拼音
- - { when: composing, accept: Shift+Tab, send: Shift+Left }
- - { when: composing, accept: Tab, send: Shift+Right }
- # Option/Alt + ←/→ 切换光标至下/上一个拼音
- - { when: composing, accept: Alt+Left, send: Shift+Left }
- - { when: composing, accept: Alt+Right, send: Shift+Right }
- # 翻页 - =
- - { when: has_menu, accept: minus, send: Page_Up }
- - { when: has_menu, accept: equal, send: Page_Down }
- - { when: always, toggle: ascii_punct, accept: Control+Shift+3 } # 切换中英标点
- - { when: always, toggle: ascii_punct, accept: Control+Shift+numbersign } # 切换中英标点
- - { when: always, toggle: traditionalization, accept: Control+Shift+4 } # 切换简繁
- - {
- when: always,
- toggle: traditionalization,
- accept: Control+Shift+dollar,
- } # 切换简繁
- - { when: composing, accept: Control+k, send: Shift+Delete }
- - { accept: KP_0, send: 0, when: composing }
- - { accept: KP_1, send: 1, when: composing }
- - { accept: KP_2, send: 2, when: composing }
- - { accept: KP_3, send: 3, when: composing }
- - { accept: KP_4, send: 4, when: composing }
- - { accept: KP_5, send: 5, when: composing }
- - { accept: KP_6, send: 6, when: composing }
- - { accept: KP_7, send: 7, when: composing }
- - { accept: KP_8, send: 8, when: composing }
- - { accept: KP_9, send: 9, when: composing }
- - { accept: KP_Decimal, send: period, when: composing }
|