vscode 关闭智能提示

mac 中用 command + , 打开 settings.json

在 USER_SETTINGS (右边)的末尾输入四行:

    "editor.quickSuggestions": false,
    "editor.parameterHints": false,
    "editor.wordBasedSuggestions": false,
    "editor.snippetSuggestions": "none",

保存该json文件即可关闭智能提示。

你可能感兴趣的:(vscode 关闭智能提示)