抱歉,您的浏览器无法访问本站
本页面需要浏览器支持(启用)JavaScript
了解详情 >

简介

Fcitx5 可能破坏部分 V2 协议

修复 rime 漏字现象 修复英文锁定 bug 以及 Electron Wayland 无法删除第一个预编辑字母的 bug (niri环境测试)

使用方法

rime 漏字

fix_input.patch

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# 首次执行 克隆 librime 仓库
git clone https://github.com/rime/librime.git
cd librime

# 切换到特定提交(patch基于该提交制作
git checkout 0ecfc9c

# 首次执行 引入插件
cd plugins
git clone https://github.com/hchunhui/librime-lua
git clone https://github.com/lotem/librime-proto
git clone https://github.com/rime/librime-predict
git clone https://github.com/lotem/librime-octagram
cd ..

# 首次不执行(按需执行) 用于重置代码
git reset --hard 0ecfc9c

# 应用补丁
git apply path/to/fix_input.patch

# 编译安装
make -j$(nproc) && sudo make install

英文锁定

fix_waylandimserverv2_bug.patch

1
2
3
4
5
6
7
8
9
10
11
12
# 首次执行 克隆 fcitx5 仓库
git clone https://github.com/fcitx/fcitx5.git
cd fcitx5
# 应用补丁
git apply path/to/fix_waylandimserverv2_bug.patch

# 编译安装
mkdir build
cd build
cmake .. -DCMAKE_INSTALL_PREFIX=/usr
make -j$(nproc)
sudo make install

演示

漏字

英文锁定

代码

更新日志

2025-09-26

  1. 同步 GitHub 仓库内容

评论