Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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!

enter image description here

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
}
like image 718
Tobias Fünke Avatar asked Feb 06 '16 21:02

Tobias Fünke


People also ask

How do I get rid of quick fix in VS Code?

Clicking on the Code Action lightbulb or using the Quick Fix command Ctrl+. will display Quick Fixes and refactorings. If you'd just like to see refactorings without Quick Fixes, you can use the Refactor command (Ctrl+Shift+R).


1 Answers

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
like image 146
TomR Avatar answered Oct 25 '22 22:10

TomR