osfans / PRIME

Develop input methods for Windows easily with Python
Other
365 stars 23 forks source link

數字鍵盤區的回車鍵有問題 #7

Closed KiritoStudio closed 7 years ago

KiritoStudio commented 7 years ago

打字的時候發現回車鍵跟數字鍵盤區的回車鍵在輸入的時候好像功能不一致,拼音選字的時候按回車鍵是會直接打英文的,但是數字鍵盤區的回車鍵卻沒反映,看上去應該是個bug?

osfans commented 7 years ago

跟主鍵盤不同,是KP_Enter

KiritoStudio commented 7 years ago

是需要什麼設定嗎?

osfans commented 7 years ago

https://github.com/rime/rime-prelude/blob/master/default.yaml#L106

具體參考這個。可以將KP_Enter轉發爲Return

KiritoStudio commented 7 years ago

Nice,加入

  • { when: composing, accept: KP_Enter, send: Return }

後,重新部署一下就可以了