0

VS code tooltip

How do I disable this floating hint/tooltip in VS Code? This happens with expressjs only.

My editor.hover.enabled is already set to false. I don't think any extensions I have installed are responsible for this.

  • I have disabled and checked with IntelliSense extensions for JS, ESLint but still it's the same

  • Disabled all hover settings in VS Code preferences

starball
  • 20,030
  • 7
  • 43
  • 238
R R
  • 9
  • 4
  • "_I don't think any extensions I have installed are responsible for this._" you can actually check by restarting with extensions disabled, and doing an [extension bisect](https://code.visualstudio.com/blogs/2021/02/16/extension-bisect). – starball Apr 12 '23 at 21:00
  • Does this answer your question? [Remove Parameter Hints Box in Visual Studio Code](https://stackoverflow.com/questions/48123237/remove-parameter-hints-box-in-visual-studio-code) – starball Apr 26 '23 at 18:37

1 Answers1

0

Add "editor.parameterHints.enabled": false in a settings.json file.

starball
  • 20,030
  • 7
  • 43
  • 238
R R
  • 9
  • 4