bootstrap4-snippets
bootstrap4-snippets copied to clipboard
Snippets are suggested for .txt files
I've had to disable the extension as it causes me a lot of problems when editing plain text files. Any way to add an option to turn suggestions off based on file type instead of just every file? I'll look at doing a PR for it.
I found a temporary workaround to add to settings.json that disables IntelliSense for all plain text files:
"[plaintext]": {
"editor.quickSuggestions": {
"other": false,
"comments": false,
"strings": false
}
}