How to disable IntelliSense in VS Code for Markdown?

IntelliSense suggestions in VS Code can be configured globally or per each workspace and as of 1.9 per file-type (language), using the editor.quickSuggestions, editor.acceptSuggestionOnEnter and editor.suggestOnTriggerCharacters settings. // Controls if quick suggestions should show up or not while typing “editor.quickSuggestions”: true, Since VSCode 1.11, the quickSuggestions setting allows more fine-grained control over quick suggestions. However, … Read more