vscode提示快捷键是Ctrl + space(空格 ),但是Ctrl + space是系统输入法切换快捷键,这样就会有冲突
在vscode中按Ctrl + Shift + P 输入key命令keyboard将以下JSON复制进入
vscode提示快捷键与输入法冲突解决办法

// Place your key bindings in this file to override the defaultsauto[]
[
    {
        "key": "alt+oem_2",
        "command": "editor.action.triggerSuggest",
        "when": "editorHasCompletionItemProvider && textInputFocus && !editorReadonly"
    },
    {
        "key": "ctrl+space",
        "command": "-editor.action.triggerSuggest",
        "when": "editorHasCompletionItemProvider && textInputFocus && !editorReadonly"
    }
]

将快捷键重新设置后可以使用Alt + /Ctrl + I代码提示建议

相关文章:

  • 2021-04-20
  • 2022-12-23
  • 2021-11-27
  • 2021-07-16
  • 2022-12-23
  • 2021-12-29
  • 2021-09-20
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-12-25
  • 2021-05-11
  • 2021-10-11
  • 2021-08-08
  • 2021-08-28
相关资源
相似解决方案