Home > Software engineering >  Is there a way to place error popups from vscode not upside?
Is there a way to place error popups from vscode not upside?

Time:08-21

VS Code error pop up

Is there a way to place this pop up from VS Code, down below the error or change transparency to 0.75?

CodePudding user response:

Add this line to your settings.json:

  "editor.hover.above": false,

enter image description here

  • Related