How can I customize the tab-to-space conversion factor?

By default, Visual Studio Code will try to guess your indentation options depending on the file you open. You can turn off indentation guessing via “editor.detectIndentation”: false. You can customize this easily via these three settings for Windows in menu File → Preferences → User Settings and for Mac in menu Code → Preferences → … Read more

Does anybody know the name of this setting inside of VS Code Insiders? For grayed out parameter and variable annotations

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

How can I switch word wrap on and off in Visual Studio Code?

Since v1.0 you can toggle word wrap: with the new command editor.action.toggleWordWrap, or from the View menu (*View** → Toggle Word Wrap), or using the ALT+Z keyboard shortcut (for Mac: ⌥+Z). It can also be controlled with the following settings: editor.wordWrap editor.wordWrapColumn editor.wrappingIndent Known issues: renderLineHighlight should highlight the entire logical line If you’d like … Read more

Disable tooltip hint in Visual Studio 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