How do I disable the tooltip in VS Code that shows function parameter descriptions and overloads (parameter hints)?

You turned off code completion correctly. But parameter hints are still active. Turn them off by going into the Settings menu, searching for editor.parameterHints.enabled, and un-checking the box. Or put the following entry in your settings.json: “editor.parameterHints.enabled”: false If you ever want to see the parameter hints on-demand, refer to How to trigger parameter hints … Read more

How can I trigger the hover info widget in VS Code using commands or a keyboard shortcut?

This is the editor.action.showHover command. It is bound to cmdk cmdi by default. Note: Shortcut works by holding down the cmd [ctrl in windows], then while holding press k then i You can change the keyboard shortcut with a keybinding such as: { “key”: “cmd+k ctrl+space”, “command”: “editor.action.showHover”, “when”: “editorTextFocus” }

How do I change the color of comments in VS Code?

From 1.15 (July 2017) you can change it from settings.json Ctrl+, “editor.tokenColorCustomizations”: { “comments”: “#d4922f” }, From 1.20 (January 2018) you can also do it for each theme separately: “editor.tokenColorCustomizations”: { “[Atom One Dark]”: { “comments”: “#d4922f” } }, Or now you can specify settings for multiple themes at once as “[Atom One Dark][Tomorrow Night … Read more

How can I prevent VS Code from replacing a newly opened, unmodified (preview) tab with a subsequently opened one?

When you [single-]click a file in the left sidebar’s file browser or open it from the quick open menu (Ctrl–P, type the file name, Enter), Visual Studio Code opens it in what’s called “Preview Mode”, which allows you to quickly view files. Preview Mode tabs are not kept open. As soon as you go to … Read more