Great extension @asvetliakov. For the past two years I have used the VSCodeVim plugin and now I am trying to adapt some of the commands to VSCode-Neovim extensions.
{
"before": [
"<leader>",
"t",
"z"
],
"after": [],
"commands": [
{
"command": "workbench.action.toggleZenMode",
"args": []
}
]
}
Define mappings (except insert-mode) in Nvim config (init.vim). https://github.com/asvetliakov/vscode-neovim#invoking-vscode-actions-from-neovim
if exists('g:vscode')
nnoremap <silent> <leader>tz <Cmd>call VSCodeCall('workbench.action.toggleZenMode')<CR>
endif
Most helpful comment
Define mappings (except insert-mode) in Nvim config (
init.vim). https://github.com/asvetliakov/vscode-neovim#invoking-vscode-actions-from-neovim