如何在visual studio代码中禁用信息框?

问题描述 投票:0回答:1

快速的问题,我似乎无法正确猜测这个 "信息框 "的名称,所以google不会给我找到正确的解决方案来禁用这个。

visual-studio-code vscode-settings
1个回答
0
投票

在VSCode术语中,它被称为Intellisense,你可以通过以下设置对它进行相应的配置,在你的 settings.json 档案

    // Controls if quick suggestions should show up or not while typing
    "editor.quickSuggestions": false,

    // Enables parameter hints
    "editor.parameterHints": false,

    // Controls if suggestions should automatically show up when typing trigger characters
    "editor.suggestOnTriggerCharacters": false,

如果您在禁用这些功能后还想访问这些功能,您可以使用键盘快捷键。

CTRL+SPACE - 触发建议

CTRL+SHIFT+SPACE - 触发参数命中率

© www.soinside.com 2019 - 2024. All rights reserved.