squirrel icon indicating copy to clipboard operation
squirrel copied to clipboard

如何在中文输入过程中输入"-"

Open pencilheart opened this issue 1 year ago • 3 comments

在现在的设置中,"-"作为"minus"起到"Page_Up"的作用。但在实际使用中,无法实现输入中打"-"的效果(但此可在mac自带中文输入法中实现)。有无办法可实现在输入的过程中打出"-"?

pencilheart avatar Nov 10 '23 12:11 pencilheart

把「"-"作为"minus"起到"Page_Up"的作用」關掉不就好了

LEOYoon-Tsaw avatar Nov 10 '23 21:11 LEOYoon-Tsaw

key_binder/bindings中的這個綁定: { when: has_menu, accept: minus, send: Page_Up } 改成: { when: paging, accept: minus, send: Page_Up } 就和系統輸入法相同了

groverlynn avatar Nov 22 '23 05:11 groverlynn

key_binder/bindings中的這個綁定: { 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 }这个翻页就失效了, 不知道是否可以同时存在呢?

Syntax-J avatar Dec 29 '23 07:12 Syntax-J