简体   繁体   中英

How do I get rid of this popup in VSCode?

This little pop up comes up when I start typing new properties in objects, and seemingly all the time. It prevents me moving up/down lines because the up/down arrows scroll the contents of the box. I'm sorry to say it feels like the VSCode version of Clippy from MS Word!

在此处输入图片说明

I've tried the following user settings to no avail

// Place your settings in this file to overwrite the default settings
{
  "editor.referenceInfos": false,
  "editor.suggestOnTriggerCharacters": false,
  "editor.autoClosingBrackets": false,
  "editor.quickSuggestions": false
}

要禁用这些文档弹出窗口,您可以将此选项添加到首选项 -> 设置:

"editor.parameterHints.enabled": false

That is the intellisense/refactoring support. Beyond the user settings you mentioned, it's part of the language support.

You could:

  • Switch to a different "Language" setting
  • Make a custom language support, that adds the intellisense features you like without the full support, then modify your vscode installation to remove the original support.
  • Press the ESC key before up/down to close the popup

This one worked for me. The popups seemed to have become more of an issue lately when they never used to hinder me before.

"editor.hover.enabled": false

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM