如何禁用这些 VSCode 工具提示? [英] How to disable these VSCode tooltips?

查看:40
本文介绍了如何禁用这些 VSCode 工具提示?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

每当我打字时,这些工具提示就会出现.有没有办法禁用它们?

Whenever I am typing, these tooltips show up. Is there a way to disable them?

推荐答案

有几种方法可以在 VSCode 中自定义 IntelliSense.我相信您图片中的那个是参数提示.您可以转到 File → Preferences → Settings 并搜索 "parameterHints".

There are a few ways to customize the IntelliSense in VSCode. I believe the one in your picture is a parameter hint. You can go to File → Preferences → Settings and search for "parameterHints".

以下是您可以调整的其他一些内容:

Here are some others you can tweak:

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

// Controls if suggestions should be accepted with "Enter" - in addition to "Tab". Helps to avoid ambiguity between inserting new lines and accepting suggestions.
"editor.acceptSuggestionOnEnter": true,

// Controls the delay in ms after which quick suggestions will show up.
"editor.quickSuggestionsDelay": 10,

// Enable word based suggestions
"editor.wordBasedSuggestions": true,

// Enable parameter hints
"editor.parameterHints": true

更多信息此处.

这篇关于如何禁用这些 VSCode 工具提示?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆