Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
Disable IntelliSense for Plain Text in VS Code
# Ctl+Shift+P > Language Specific Settings > Plain Text
# Find the plaintext settings and add editor.quickSuggestions: false:
"[plaintext]": {
"editor.quickSuggestions": {
"other": false,
"comments": false,
"strings": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment