Visual studio code VS代码插入<;选项卡>;选项卡何时自动完成

Visual studio code VS代码插入<;选项卡>;选项卡何时自动完成,visual-studio-code,Visual Studio Code,昨天我将Mac的VS代码更新为1.19.0时,这才刚刚开始 点击tab键自动完成,在我的代码中插入实际字符串;我现在必须点击enter接受自动完成建议 Ex:(管道是光标) Forms |//自动完成包括“FormsModule” (点击tab键将导致) 形式 原来是Vim扩展有问题,它有以下关键映射: { "key": "tab", "command": "extension.vim_tab", "when": "editorFocus && vim

昨天我将Mac的VS代码更新为1.19.0时,这才刚刚开始

点击tab键自动完成,在我的代码中插入实际字符串
;我现在必须点击
enter
接受自动完成建议

Ex:(管道是光标)

Forms |//自动完成包括“FormsModule”
(点击tab键将导致)
形式

原来是Vim扩展有问题,它有以下关键映射:

  {
    "key": "tab",
    "command": "extension.vim_tab",
    "when": "editorFocus && vim.active && !inDebugRepl && vim.mode != 'Insert'"
  },
所以我只是否定了它:

  {
    "key": "tab",
    "command": "-extension.vim_tab",
    "when": "editorFocus && vim.active && !inDebugRepl && vim.mode != 'Insert'"
  },
  {
    "key": "tab",
    "command": "-extension.vim_tab",
    "when": "editorFocus && vim.active && !inDebugRepl && vim.mode != 'Insert'"
  },