|  |      1Stunt4013      2 天前 在 normal mode 下 tab 相当于 CTRL-I ,试试把 vim 默认的 keymap 删除 | 
|  |      2xlsama      1 天前 `keybindings.json`, 我用的 neovim 这样配置,可以在 normal 模式下 tab 补全,你可以参考一下 ```json { "key": "tab", "command": "-vscode-neovim.send", "when": "neovim.init && neovim.recording || editorTextFocus && neovim.init && neovim.mode != 'insert' && editorLangId not in 'neovim.editorLangIdExclusions'" }, ``` |