We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
在现在的设置中,"-"作为"minus"起到"Page_Up"的作用。但在实际使用中,无法实现输入中打"-"的效果(但此可在mac自带中文输入法中实现)。有无办法可实现在输入的过程中打出"-"?
The text was updated successfully, but these errors were encountered:
把「"-"作为"minus"起到"Page_Up"的作用」關掉不就好了
Sorry, something went wrong.
key_binder/bindings中的這個綁定: { when: has_menu, accept: minus, send: Page_Up } 改成: { when: paging, accept: minus, send: Page_Up } 就和系統輸入法相同了
{ when: has_menu, accept: minus, send: Page_Up }
{ when: paging, accept: minus, send: Page_Up }
系统自带的输入法在没有使用过"+"进行翻页时候, "-"还有一个不上屏效果,在rime我配置了: recognizer/patterns中的underscore: "^[A-Za-z]+[_-].*" # 下划线不上屏,这样虽然可以实现输入"-"不上屏, 但是{ when: paging, accept: minus, send: Page_Up }这个翻页就失效了, 不知道是否可以同时存在呢?
underscore: "^[A-Za-z]+[_-].*" # 下划线不上屏
No branches or pull requests
在现在的设置中,"-"作为"minus"起到"Page_Up"的作用。但在实际使用中,无法实现输入中打"-"的效果(但此可在mac自带中文输入法中实现)。有无办法可实现在输入的过程中打出"-"?
The text was updated successfully, but these errors were encountered: