Have linux scripts without file extensions and atypical shebang lines which mean VSCode cannot detect your script's language correctly? Maybe Shebang Language Associator can help.
Sets the VSCode lanaguage for a given file based on regex patterns for shebang lines. Just that.
The patterns to associate to given languages. For example:
"shebang.associations": [
{
"pattern": "^#!/bin/bash$",
"language": "shellscript"
}
]
Whether to re-check shebang lines on file save (new in 1.3.0).
"shebang.associations": true
See CHANGELOG.md