bootstrap4-snippets icon indicating copy to clipboard operation
bootstrap4-snippets copied to clipboard

Snippets are suggested for .txt files

Open shawnwildermuth opened this issue 5 years ago • 1 comments

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.

shawnwildermuth avatar Dec 19 '19 08:12 shawnwildermuth

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
        }
    }

nmggithub avatar Jan 21 '20 16:01 nmggithub