You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[
{
"key": "ctrl+space",
"command": "whichkey.show"
},
// replace ctrl+space with your keybinding e.g.
{
"key": "ctrl+w",
"command": "whichkey.show"
},
]
Save file ctrl+s
Open command palette ctrl+shift+p
Open User Settings (JSON)
Add
"vim.handleKeys": {
"<C-space>": false,
},
// replace ctrl+space with your keybinding
"vim.handleKeys": {
"<C-w>": false,
},
Save user settings ctrl+s
5.0 Known Issues
Integration with Neovim
This extension does not support vscode/vim neovim mode or any other neovim extension.
Configuration to both VS Code and user's Neovim is required in order for Neovim to work.
VS Code extensions do not have access to user's application (Neovim).
Follow Chris Chiarulli's tutorial on how to embed Neovim in VS Code.