1tontech / bootstrap4-snippets

Visual studio extension & Intellij plugin for Bootstrap 4, Font awesome 4, Font Awesome 5 Free & Pro snippets/live templates
MIT License
117 stars 43 forks source link

Snippets are suggested for .txt files #33

Open shawnwildermuth opened 4 years ago

shawnwildermuth commented 4 years ago

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.

nmggithub commented 4 years ago

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