Open CHminggao opened 4 days ago
I shoot blindly:
exclude.where = window.module=="InputHost.dll"
or find another way to disable NS on Rime
I shoot blindly:
exclude.where = window.module=="InputHost.dll"
or find another way to disable NS on Rime
add shell.nss like this? but still crash
settings { exclude.where = !process.is_explorer and window.module == "InputHost.dll" }
settings { }
exclude.where = window.module=="InputHost.dll" // this is from your error report. I don't know which dll is causing the problem.
// or
exclude.process = 'Weasel Server' // this is from app description in task manager, Тhis is how you exclude a process
// or
exclude.process = 'WeaselServer' // this is because the file description and file name are different
or
(if needed), like:
exclude.where = !process.is_explorer or window.module == "InputHost.dll"
https://github.com/rime/home/issues/1726