@asvetliakov This plugin is awesome 馃殌
I found out that i could call any vscode command from my vimrc.
Even with arguments!
I think the above should be mentioned in the readme.
nnoremap K :<C-u>call VSCodeCall('editor.action.showHover')<CR>
nnoremap ? :<C-u>call VSCodeCall('workbench.action.findInFiles', { 'query': expand('<cword>')})<CR>
@aminroosta
From readme 馃槃
It's possible to call vscode commands from neovim. See VSCodeCall/VSCodeNotify vim functions in vscode-neovim.vim file. VSCodeCall is blocking request, while VSCodeNotify is not
Probably need to move it to own section for better visibility.
Also there are VSCodeCallRange/VSCodeNotifyRange in case if you need to specify some visual range for vscode command
Generally use VSCodeNotify unless you're really needing a blocking call
Most helpful comment
@asvetliakov This plugin is awesome 馃殌
I found out that i could call any vscode command from my vimrc.
Even with arguments!
I think the above should be mentioned in the readme.