Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Remove Parameter Hints Box in Visual Studio Code

Someone know's how to remove this box: "help" box It's better showed here

like image 275
Felix J Maxwell Avatar asked Jan 06 '18 00:01

Felix J Maxwell


2 Answers

Open the menu, chose the command File > Preferences > Settings to open or create a settings.json file where you can modify the behaviour of Visual Studio Code.

In this file, add the following line at an appropriate place:

"editor.parameterHints": false,

In newer version of Visual Studio Code you have to use this instead:

"editor.parameterHints.enabled": false,

Reference:

  • Intellisense in Visual Studio Code

  • Visual Studio Code User and Workspace Settings

like image 180
NineBerry Avatar answered Sep 28 '22 06:09

NineBerry


I went to File->Preferences->Settings and a tab opened with Commonly Used at the top. Did Ctrl-F to search parameter, then uncheck the box which is saved automatically it will say. Done.

like image 22
mLstudent33 Avatar answered Sep 28 '22 07:09

mLstudent33