简体   繁体   中英

Remove Parameter Hints Box in Visual Studio Code

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

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:

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.

For me it didn't work but someone on github mention that once you start typing, if the parameter hints show up, just press **ctrl + space** and it won't show up again. It was simple and easy!

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM