[problem help] 中州韵无法修改输入方案怎么搞
Tofloor
poster avatar
忘了
deepin
2026-04-14 10:44
Author

默认状态就这样,左右修改后无法生效,重新打开设置还是默认状态。
wechat_2026-04-14_104034_381.png

Reply Favorite View the author
All Replies
avatar
deepin流云
Super Moderator
Community OP
2026-04-14 11:32
#1

中州韵你要去它的配置文件夹修改配置文件:~/.local/share/fcitx5/rime

一般是default或者schema.yaml

修改之后重新部署才会生效

Reply View the author
avatar
131******86
deepin
2026-04-17 17:43
#2

我用薄荷方案可以 万象不行

Reply View the author
avatar
蘭蔻
deepin
2026-04-20 23:27
#3

终端执行:

apt-cache search rime-data-

查找可安装的 rime 输入法,比如说,要安装宫保拼音输入法,执行:

sudo apt install rime-data-combo-pinyin

然后,在 ~/.local/share/fcitx5/rime/default.custom.yaml 文件中的 schema_list: 下面添加一行:

- schema: combo_pinyin

注意,要与其它 schema 项对齐,这是 yaml 文件。整个文件看起来像这个样子:

# default.custom.yaml
# save it to: 
#   ~/.config/share/fcitx5/rime  (linux)
#   ~/Library/Rime       (macos)
#   %APPDATA%\Rime       (windows)

patch:
  schema_list:
        - schema: wubi86               # 五笔86
    #    - schema: wubi98               # 五笔98
        - schema: wubi_pinyin          # 五笔拼音混合輸入
        - schema: luna_pinyin          # 朙月拼音
        - schema: luna_pinyin_simp     # 朙月拼音 简化字模式
        - schema: luna_pinyin_tw       # 朙月拼音 臺灣正體模式
        - schema: combo_pinyin         # 宫保拼音
    #    - schema: double_pinyin_mspy   # 微軟雙拼
    #    - schema: terra_pinyin         # 地球拼音 dì qiú pīn yīn
    #    - schema: bopomofo             # 注音
    #    - schema: bopomofo_tw          # 注音 臺灣正體模式
    #    - schema: jyutping             # 粵拼
    #    - schema: cangjie5             # 倉頡五代
    #    - schema: cangjie5_express     # 倉頡 快打模式
    #    - schema: quick5               # 速成
    #    - schema: double_pinyin        # 自然碼雙拼
    #    - schema: double_pinyin_abc    # 智能ABC雙拼
    #    - schema: double_pinyin_flypy  # 小鶴雙拼
    #    - schema: wugniu        # 吳語上海話(新派)
    #    - schema: wugniu_lopha  # 吳語上海話(老派)
    #    - schema: sampheng      # 中古漢語三拼
    #    - schema: zyenpheng     # 中古漢語全拼
    #    - schema: ipa_xsampa    # X-SAMPA 國際音標
    #    - schema: emoji         # emoji表情

combo_pinyin 的名称就是 rime-data-combo-pinyin 包名的后面两个单词,不过要把 - 换成 _

配置完后,重启输入法生效。

Reply View the author