在 1.17 中禁用智能感知
Disable intellisense in 1.17
在今天的 VScode 更新 1.17 中,导入路径的 IntelliSense 自动打开。但是,我之前一直在使用扩展程序来使用此功能。
有没有办法关闭 VScode 的 IntelliSense?
如果您使用的是javascript,例如:
"[javascript]": {
"editor.quickSuggestions": false
}
它关闭了 .js 文件的所有智能感知。如果您使用不同的语言,您也可以这样做。查看 CTRL-Shift-P 后的 "language specific configuration settings..." 并选择您的语言。它会在您的 settings.json 文件中自动创建一个空规则集,您可以将上面的 editor.quickSuggestions 规则添加到其中。
另请参阅
// Enables pop-up that shows parameter documentation and type
information as you type "editor.parameterHints": true,
在今天的 VScode 更新 1.17 中,导入路径的 IntelliSense 自动打开。但是,我之前一直在使用扩展程序来使用此功能。
有没有办法关闭 VScode 的 IntelliSense?
如果您使用的是javascript,例如:
"[javascript]": {
"editor.quickSuggestions": false
}
它关闭了 .js 文件的所有智能感知。如果您使用不同的语言,您也可以这样做。查看 CTRL-Shift-P 后的 "language specific configuration settings..." 并选择您的语言。它会在您的 settings.json 文件中自动创建一个空规则集,您可以将上面的 editor.quickSuggestions 规则添加到其中。
另请参阅
// Enables pop-up that shows parameter documentation and type information as you type "editor.parameterHints": true,