qvacua / vimr

VimR — Neovim GUI for macOS in Swift
https://twitter.com/VimRefined
MIT License
6.64k stars 218 forks source link

fix ascii input method pref and switch bug #923

Closed SolaWing closed 2 years ago

SolaWing commented 2 years ago

see the two commit:

first commit fix pref config, currently the init state have not synced to nvimView, thus the wrong default value true is used.

second commit fix unexpected switch to ascii input method. this is because nvimview will receive insert -> insert mode change message, and when the previous record IM is ascii method, this will cause the temp open IM switch back to ascii. so just disable change im when isnert->insert

fixes #915

qvacua commented 2 years ago

Thanks!