vscode-highlight
vscode-highlight copied to clipboard
Support Multiple Langauge for `filterLanguageRegex`
I have a regex for C & CPP. I wanted to have the filterLanguageRegex to support multiple languages.
This is already possible. Try similar to my example:
"filterLanguageRegex": "Shell|Django",
when i put "c" language, it will detect JSON file type as valid language too.
Use begin/end anchor like ^(c|cpp)$ or mix both with ^(c|cpp)$|(script)