ctrl shift p 首选项打开键盘快捷方式
workbench.view.explorer 查看: 显示 资源管理器 ctrl ;
workbench.action.terminal.toggleTerminal 查看: 切换 终端 ctrl ’
查看:切换禅模式:ctrl + \ ctrl +
首选项:打开键盘快捷方式(JSON)

  {
    "key": "shift+u",
    "command": "extension.vim_ctrl+r",
    "when": "editorTextFocus && vim.active && vim.mode == 'Normal' && vim.use<C-r> && !inDebugRepl"
  },
  {
    "key": "ctrl+alt+r",
    "command": "editor.action.refactor"
  },
  {
    "key": "shift+left",
    "command": "vim.remap",
    "when": "vim.mode == 'Normal'",
    "args": {
      "after": ["<c-w>", "h"],
    },
  },
  {
    "key": "shift+right",
    "command": "vim.remap",
    "when": "vim.mode == 'Normal'",
    "args": {
      "after": ["<c-w>", "l"],
    },
  },
  {
    "key": "shift+top",
    "command": "vim.remap",
    "when": "vim.mode == 'Normal'",
    "args": {
      "after": ["<c-w>", "k"],
    },
  },
  {
    "key": "shift+bottom",
    "command": "vim.remap",
    "when": "vim.mode == 'Normal'",
    "args": {
      "after": ["<c-w>", "l"],
    },
  },

更多推荐