用于解决vscode中vim插件在输入中文时需要频繁切换输入法的问题,配合以下设置方式可以实现进入插入模式后自动切换为中文输入法,进入普通模式后自动切换为英文输入法 - 在 vscode-vim 插件的 setting.json 中设置 ``` "vim.useSystemClipboard": true, "vim.autoSwitchInputMethod.enable": true, "vim.autoSwitchInputMethod.defaultIM": "1033", "vim.autoSwitchInputMethod.obtainIMCmd": "F:\\ProgramSupport\\im-select\\im-select.exe", "vim.autoSwitchInputMethod.switchIMCmd": "F:\\ProgramSupport\\im-select\\im-select.exe {im}" ``` - 添加系统语言:美式英语,添加键盘布局美式键盘 - 删除微软拼音
2025-02-24 20:21:48 128KB vim  vscode
1
"vim.autoSwitchInputMethod.enable":true, "vim.autoSwitchInputMethod.defaultIM":"2057", "vim.autoSwitchInputMethod.obtainIMCmd":"D:\\Programs\\im-select.exe", "vim.autoSwitchInputMethod.switchIMCmd":"D:\\Programs\\im-select.exe {im}", 参考文章:https://www.zhihu.com/question/303850876sdfadfafdafd
2021-04-10 08:18:02 131KB im-select vscode vim 输入法切换
1