Both Star-Trek Scripting Language and Sword Coast Stratagems Scripting Language use files with extension ssl
. BGforge MLS defaults to Star-Trek Scripting Language (Fallout). If you need SCS Scripting Language instead, you can set file associations in VScode settings:
"files.associations": {
"*.ssl": "weidu-ssl"
}
This can be set globally, or per project, so you can work on both types of projects simultaneously.
The same method goes for .h
headers of C++, if you use those:
"files.associations": {
"*.h": "cpp"
}