Subhakar K S
Subhakar K S

Reputation: 87

issue with vscode-neovim navigations

I am using VsCode on MAC OSX. I installed vscode-vim and editor works fine. Now, I installed vscode-neovim extension and updated settings.json with below

"vim.enableNeovim": true,
"vim.neovimPath": "/usr/local/bin/nvim"

However, when I press arrow-keys in editor, I am getting below message

command 'vscode-neovim.up' not found

I checked the Keyboard Shortcuts see below entries for vscode-neovim.up, etc. like below attachment. enter image description here

Am I missing any other configurations?

thanks,

Upvotes: 4

Views: 1214

Answers (1)

brianmearns
brianmearns

Reputation: 9967

I had a similar issue after just installing vscode-neovim. It appears the current extension requires version 0.5.0 or later of neovim, which is a nightly/development release. On OSX, you can install it with brew install --HEAD neovim or see here for releases.

You probably also want to uninstall the vscode-vim extension from VSCode: these are conflicting extensions, not complementary.

Upvotes: 2

Related Questions