-
Notifications
You must be signed in to change notification settings - Fork 576
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
(鼠须管)升级至0.16.1后tab键操作由移动拼音光标变为了向右移动选中候选词 #609
Labels
Comments
我也遇到这个问题了,修改 patch:
key_binder/bindings:
- { when: composing, accept: Control+p, send: Up }
- { when: composing, accept: Control+n, send: Down }
- { when: composing, accept: Control+b, send: Left }
- { when: composing, accept: Control+f, send: Right }
- { when: composing, accept: Control+a, send: Home } # 光标跳转至行首
- { when: composing, accept: Control+e, send: End } # 光标跳转至行尾
- { when: composing, accept: Control+d, send: Delete }
- { when: composing, accept: Control+k, send: Shift+Delete }
- { when: composing, accept: ISO_Left_Tab, send: Shift+Left }
- { when: composing, accept: Shift+Tab, send: Shift+Left }
- { when: composing, accept: Tab, send: Shift+Right } left-and-right.mp4 |
这个问题在配置了 patch:
style:
# 横向排列
candidate_list_layout: linear # 竖向排列需要删除本行
text_orientation: horizontal stacked.mp4 |
最近一次重构 #603 造成的。一些情况下Shift+功能键会执行该功能键的动作。这里应严格匹配。 |
lotem
added a commit
to lotem/librime
that referenced
this issue
Feb 5, 2023
Tab = Shift+Right should be skipped instead of treated as Right. Fixes rime#609
# for free
to join this conversation on GitHub.
Already have an account?
# to comment
升级前tab可以在输入多个拼音时移动到第一个拼音的结尾 再按一下就往右移一个拼音

升级后tab就变成移动当前选中的候选词了
检查build里的default.yaml tab绑定的设置仍是Shift+Right
The text was updated successfully, but these errors were encountered: