Home > Back-end >  How can I turn off "suggestions table?" in VS Code?
How can I turn off "suggestions table?" in VS Code?

Time:02-15

I want to turn off the part that I marked with red. Could you please help? (Only want to bottom part to be appear.)

enter image description here

CodePudding user response:

Add this in your settings.json:

"editor.parameterHints.enabled": false

  • Related