Open gaboolic opened 6 months ago
2 开启用, .翻页 在default.yaml
key_binder:
bindings:
__patch:
- key_bindings:/emacs_editing
- key_bindings:/move_by_word_with_tab
- key_bindings:/paging_with_minus_equal
# 使用,和.来翻页
# - key_bindings:/paging_with_comma_period
- key_bindings:/numbered_mode_switch
去掉前面的# ,改为- key_bindings:/paging_with_comma_period
3 模糊音 这个功能类似飞键。
以不分平翘舌音为例: 在flypy_flypy.schema.yaml中,修改以下部分 speller: algebra:
- derive/^z([a-z])/v$1/
- derive/^c([a-z])/i$1/
- derive/^s([a-z])/u$1/
- derive/^v([a-z])/z$1/
- derive/^i([a-z])/c$1/
- derive/^u([a-z])/s$1/
添加韵母的话,和上面类似
比如添加in和ing的模糊音,如果in是b,ing是k的话,可以这样: derive/^([a-z])b/$1k/ 派生/^([a-z])b/$1k/ derive/^([a-z])k/$1b/
4 数字大写 照搬了https://github.com/iDvel/rime-ice 输入R开头即可
5 自定义配置 自定义配置建议放在 flypy_flypy.custom.yaml 文件
patch:
#engine/translators/@last: '' ## 禁用英文单词输入功能
#punctuator/half_shape: {} ## 恢复默认引号
#menu/page_size: 5 ## 自定义候选项个数
6 启用光标回退至特定音节后、补充辅助码的功能 flypy_flypy.schema.yaml
key_binder:
import_preset: default
bindings:
#- { when: composing, accept: Tab, send: '[' } ## 取消注释后:tab引导辅助码
- { when: composing, accept: Control+m, send: Return }
- { when: composing, accept: Control+w, send: Control+BackSpace }
- { when: has_menu, accept: semicolon, send: 2 }
- { when: has_menu, accept: slash, send: 3 }
- { when: composing, accept: Control+i, send: Shift+Right }
- { when: composing, accept: Control+o, send: Shift+Left }
## 对以下4行取消注释后:启用光标回退至特定音节后、补充辅助码的功能
## (自然码等其他双拼用户请在 pinyin_switch.yaml 中设置)
#- { when: composing, accept: Control+1, send_sequence: '{Home}{Shift+Right}[' }
#- { when: composing, accept: Control+2, send_sequence: '{Home}{Shift+Right}{Shift+Right}[' }
#- { when: composing, accept: Control+3, send_sequence: '{Home}{Shift+Right}{Shift+Right}{Shift+Right}[' }
#- { when: composing, accept: Control+4, send_sequence: '{Home}{Shift+Right}{Shift+Right}{Shift+Right}{Shift+Right}[' }
7 关于qu qv,ju jv
打开# - derive/^([jqxy])u/$1v/
的注释,即可qu qv,ju jv互相飞键
再去掉custom_phrase.txt中的短语
“5 自定义配置 自定义配置建议放在 flypy_flypy.custom.yaml 文件” 大佬,在仓库里没找到这个文件啊,想着根据“小鹤快手”的github自己在自定义一下但是死活对不上文件
“5 自定义配置 自定义配置建议放在 flypy_flypy.custom.yaml 文件” 大佬,在仓库里没找到这个文件啊,想着根据“小鹤快手”的github自己在自定义一下但是死活对不上文件
这个要自己加
6 启用光标回退至特定音节后、补充辅助码的功能
key_binder: import_preset: default bindings: #- { when: composing, accept: Tab, send: '[' } ## 取消注释后:tab引导辅助码 - { when: composing, accept: Control+m, send: Return } - { when: composing, accept: Control+w, send: Control+BackSpace } - { when: has_menu, accept: semicolon, send: 2 } - { when: has_menu, accept: slash, send: 3 } - { when: composing, accept: Control+i, send: Shift+Right } - { when: composing, accept: Control+o, send: Shift+Left } ## 对以下4行取消注释后:启用光标回退至特定音节后、补充辅助码的功能 ## (自然码等其他双拼用户请在 pinyin_switch.yaml 中设置) #- { when: composing, accept: Control+1, send_sequence: '{Home}{Shift+Right}[' } #- { when: composing, accept: Control+2, send_sequence: '{Home}{Shift+Right}{Shift+Right}[' } #- { when: composing, accept: Control+3, send_sequence: '{Home}{Shift+Right}{Shift+Right}{Shift+Right}[' } #- { when: composing, accept: Control+4, send_sequence: '{Home}{Shift+Right}{Shift+Right}{Shift+Right}{Shift+Right}[' }
5
请问这个是放到哪个文件里面的
{Home}{Shift+Right}{Shift+Right}
flypy_flypy.schema.yaml
8 快符 https://github.com/gaboolic/rime-shuangpin-fuzhuma/issues/19 https://github.com/gaboolic/rime-shuangpin-fuzhuma/issues/13
o符快符使用可以参考:https://flypy.cc/#/fh 举例: 希腊字母 ofxx αβγ ofxd ΑΒΓ
9 以词定字 以词定字的功能关了,因为有辅助码了 就不太需要以词定字 如果想打开 可以看https://github.com/gaboolic/rime-shuangpin-fuzhuma/issues/15#issuecomment-2087710504
10 预输入框中显示双拼与全拼 来自 ChaosAlphard 详见https://github.com/gaboolic/rime-shuangpin-fuzhuma/pull/18
键盘上面的全选复制功能不是上划吗
1 如何不显示形码的辅助码: flypy_flypy.schema.yaml中