Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to disable visual studio code dropdown suggestions in plain text files

How to disable Visual Studio Code dropdown suggestions? It's very annoying especially in plain text files. Is there any setting that disables this feature for some file extensions like .txt but doesn't for other extensions? Or is there any vscode extension that helps controling this feature?

enter image description here

like image 536
Tsagana Nokhaeva Avatar asked Jun 29 '19 18:06

Tsagana Nokhaeva


People also ask

How do I get rid of indentation dots in Visual Studio?

Edit -> Advanced -> untick View White Space.


1 Answers

To customize your editor by language, run the global command Preferences: Configure Language Specific Settings

"[plaintext]": {
    "editor.quickSuggestions": {
        "other": false,
        "comments": false,
        "strings": false
    }
}

https://code.visualstudio.com/docs/getstarted/settings#_language-specific-editor-settings

like image 146
Alex Avatar answered Nov 15 '22 07:11

Alex