Skip to content

Latest commit

 

History

History
23 lines (16 loc) · 694 Bytes

file_associations.md

File metadata and controls

23 lines (16 loc) · 694 Bytes

File associations

SSL

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.

H

The same method goes for .h headers of C++, if you use those:

"files.associations": {
    "*.h": "cpp"
}