-
Notifications
You must be signed in to change notification settings - Fork 568
New issue
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
怎么可以解决输入较多字母时候导致卡顿的情况 #510
Comments
你这个问题其实可以通过lua_processor解决. 输入碼超长,lua_processor全部处理掉,不给translator处理,就没有问题了 |
不是拼音方案的也可以这样子么,我用的是粤拼 |
和方案无关吧 这本身就是processor的职责 |
应该加上输入串的长度限制,吼。 |
能不能一步到位考虑一下 #544 , 限制构成自造词的原词条的数量… |
不行。到不了位。細節不在這兒討論吧。 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
昨天晚上我的猫按了我键盘 导致输入了打量的字母,
输入法由于需要根据input来查找translations里面的字词,就会导致大量占用内存。
怎么可以解决输入较多字母时候卡顿情况,
我想到的是两种:
1、参考微软输入法的做法,限制输入法键入数量, 当字母达到20个的时候,不管怎么输入都没用。
2、当字母输入到设定的值后,不再进行查找功能,转而变为输入纯字母。
通过修改什么可以实现呢
The text was updated successfully, but these errors were encountered: