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
commit raw input 是会更新用户词的,上屏的是 “我de”,但却会记录 “我” 的用户词,建议修改
editor.cc 没有 commit_context_input 方法,于是我用 Lua 实现了一个,希望 editor.cc 也能实现
local keyMap={[65293]=true,[65421]=true} return function(key,env) if env.engine.context:has_menu() and keyMap[key.keycode] then env.engine:commit_text(env.engine.context.input) env.engine.context:clear() return 1 end return 2 end
The text was updated successfully, but these errors were encountered:
No branches or pull requests
commit raw input 是会更新用户词的,上屏的是 “我de”,但却会记录 “我” 的用户词,建议修改
editor.cc 没有 commit_context_input 方法,于是我用 Lua 实现了一个,希望 editor.cc 也能实现
The text was updated successfully, but these errors were encountered: