VS 代码建议框禁用
VS code suggestion box disable
我似乎找不到在 VS 代码中禁用建议的方法。我什至不确定 boxes that show in the code are called suggestions, but I really want to disable these. They are covering literally almost half of my code. Does anyone know how to disable these boxes?
顶框为parameterHinits
,底框为quickSuggestions
。
我觉得this可以解决你的问题
如果您不想要快速建议,您可以设置:
"editor.quickSuggestions": {
"other": false,
"comments": false,
"strings": false
}
但我认为这是不必要的,因为您可以设置更长的时间 editor.quickSuggestionsDelay
。
提示:您始终可以使用 ctrl
+ space
切换快速建议
我似乎找不到在 VS 代码中禁用建议的方法。我什至不确定 boxes that show in the code are called suggestions, but I really want to disable these. They are covering literally almost half of my code. Does anyone know how to disable these boxes?
顶框为parameterHinits
,底框为quickSuggestions
。
我觉得this可以解决你的问题
如果您不想要快速建议,您可以设置:
"editor.quickSuggestions": {
"other": false,
"comments": false,
"strings": false
}
但我认为这是不必要的,因为您可以设置更长的时间 editor.quickSuggestionsDelay
。
提示:您始终可以使用 ctrl
+ space