Disable (or toggle) the wavy underline/squigglies (problems) in VS Code

To disable wavy/squiggly underline in vscode, go to settings.json (Ctrl + Shift + P to access the Command Palette and type “settings.json”) and set underline color to fully transparent: { “workbench.colorCustomizations”: { “editorError.foreground”: “#00000000”, “editorWarning.foreground”: “#00000000”, “editorInfo.foreground”: “#00000000” } } Though it may be better to make underline color just less vibrant: { “workbench.colorCustomizations”: { … Read more

How can I disable hover tooltip hints in VS Code?

editor.hover.enabled: false in settings.json to Tooltip Click on Edit in settings.json There are two panes Default User Settings “editor.quickSuggestions”: { “other”: false, “comments”: false, “strings”: false } User Settings “editor.parameterHints.enabled”: false, “editor.suggest.snippetsPreventQuickSuggestions”: false, “html.suggest.html5”: false, “editor.snippetSuggestions”: “none”, This also can be done UI. Setting Snippet Suggestions : false Update August 2018 (version 1.27) Goto File=>Preference=>Settings … Read more

Is it possible to use the vscode: hyperlink to open a file or directory in Code?

Yes, it is possible. Open a project (or a directory) vscode://file/{full path to project}/ vscode://file/c:/myProject/ Open a file vscode://file/{full path to file} vscode://file/c:/myProject/package.json Open a file to line and column vscode://file/{full path to file}:line:column vscode://file/c:/myProject/package.json:5:10 More details: https://github.com/Microsoft/vscode-docs/blob/master/docs/editor/command-line.md#opening-vs-code-with-urls

Visual studio code, exclude directory from “go to file” option (ctrl + p)

As @adamesque stated, to exclude files from quick open you can either add them to files.exclude or search.exclude setting. The issue then is that Quick Open also stores recent items, even from excluded paths. Fortunately, VSCode now have a command File: Clear Recently Opened! EDIT: As I needed to replace a Disk path while keeping … Read more

What are these parameter name annotations in my VS Code editor called, and how can I enable/disable them?

Those are Inlay Hints. You can enable (the default) or disable them with the setting: Editor > Inlay Hints: Enabled or change the Font Family or Font Size by searching for Inlay Hints in the Settings UI. And there is finer control for parameter names/types, variable types and more for js/ts files. For a lot … Read more