-- https://github.com/asvetliakov/vscode-neovim#normal-mode-control-keys -- available by default -- CTRL-a -- CTRL-b -- CTRL-c -- CTRL-d -- CTRL-e -- CTRL-f -- CTRL-i -- CTRL-o -- CTRL-r -- CTRL-u -- CTRL-v -- CTRL-w -- CTRL-x -- CTRL-y -- CTRL-] -- CTRL-j -- CTRL-k -- CTRL-l -- CTRL-h -- CTRL-/ if vim.g.vscode then vim.keymap.set('n', 'H', 'Tabprevious', { noremap = true, silent = true }) vim.keymap.set('n', 'L', 'Tabnext', { noremap = true, silent = true }) vim.keymap.set( 'n', 'p', "<call VSCodeNotify('workbench.action.quickOpen')>", { noremap = true, silent = true } ) end