How do I remove inline parameter hints in VSCode?

Viewed 7621

In the latest version of VSCode, the default settings have changed and inline parameter hints are always shown in the code despite me not using any setting for it. How do I disable them?

Example (predicate and searchString):

enter image description here

2 Answers

You can disable this new default setting by putting this option in your settings.json file:

"editor.inlayHints.enabled": false

To disable this setting follow these steps :

Step 1: First you need to open 'setting.json'

        ( CTRL + SHIFT + P and type "Open Settings (JSON)" and click the 
          matching entry )
        

Step 2: Add this code in 'setting.json'

         "editor.inlayHints.enabled": "off"

enter image description here

Related