在使用Manjaro時候,安裝了fcitx-rime的,可是打出來的都是繁體字,雖然快捷鍵F4可以切換,但是每次啟動要手動切換很麻煩。
搜索找到教程:
配置文件路徑 ~/.config/ibus/rime/build/luna_pinyin.schema.yaml
找到:
switches: - name: ascii_mode reset: 0 states: ["中文", "西文"] - name: full_shape states: ["半角", "全角"] - name: simplification states: ["漢字", "漢字"] - name: ascii_punct states: ["。,", ".,"]
在simplification的地方添加一個reset,指定重置成簡體中文,改成這樣:
switches: - name: ascii_mode reset: 0 states: ["中文", "西文"] - name: full_shape states: ["半角", "全角"] - name: simplification reset: 1 states: ["漢字", "漢字"] - name: ascii_punct states: ["。,", ".,"]