如何在 vscode 中禁用 python 中的悬停?

发布于 2025-01-14 08:04:56 字数 186 浏览 2 评论 0原文

我最近 1 个月正在学习 python。现在我在 OOPS。我不介意在 vscode 中悬停过去的问题,因为我只做小行代码。但现在我不能忽视它。当我专心做某事时,我会感到烦恼。我怎样才能禁用它? 在此处输入图片说明

I am learning python for last 1 month. Now I am at OOPS. I didn't mind the hovers in vscode for past problems, 'cause I just do small line codes. But Now I can't ignore it. It annoys me when I am concentrating something. How can I disable it? enter image description here

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

他是夢罘是命 2025-01-21 08:04:56

输入 ctrl+shift+P ,然后选择打开设置(json)。
将以下代码添加到setting.json中。

"editor.quickSuggestions": {
    "other": false,
    "comments": false,
    "strings": false
},

Type ctrl+shift+P and then choose open settings(json).
Add the following code into the setting.json.

"editor.quickSuggestions": {
    "other": false,
    "comments": false,
    "strings": false
},
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文