Home > OS >  VSCode How to Close the self-opening tab
VSCode How to Close the self-opening tab

Time:12-03

I'm trying to write code in my VSC Editor, but this becomes impossible due to the tab that keeps popping up. Where can I turn it off?

enter image description here

CodePudding user response:

You can try adding

"editor.hover.enabled": false

To completely disable or

"editor.hover.delay": 123

Editing delay to a value in milliseconds for how long it takes to show the tab.
In your settings.json
Which can be accessed via F1 menu or in preferences

CodePudding user response:

You should take a look at this. maybe this is the solution

https://stackoverflow.com/questions/35246645/how-do-i-get-rid-of-this-popup-in-vscode#:~:text=Press the ESC key before up/down to close the popup

Solve:

"editor.parameterHints.enabled": false
  • Related