29.1 29.4的输入法探测也失效了

真的假的? 占用空间多少?

我用了两年了,imbot真的能用,不用单独搞一个emacs输入法了,词库也能统一,现在切换app都会记忆输入法状态,所以输入法探测可以没有,另外两个function能用就行了。

1 个赞

更新了一下,imbot逻辑很简单,遇到C-x之类强制切换到英文,post-command根据情景恢复输入法,也没见怎么费cpu。

windows用户配合这个autohotkey使用

ime_switch() { ; Send “{vkF3sc029}” Send “#{Space}” reset_all_status() Return }

^:: { If WinActive(“ahk_class Emacs”) Send(A_ThisHotkey) Else { ime_switch() } Return }

linux 用户把这个绑定到系统切换输入法的快捷键

sleep 0.2 fcitx_state=$(fcitx5-remote) if [ $fcitx_state == 2 ] ; then # inactivate fcitx5-remote -c else fcitx5-remote -o fi