Disable IntelliSense for Plain Text in VS Code
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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