soul-lang / SOUL

The SOUL programming language and API
Other
1.71k stars 95 forks source link

Syntax highlighting for SOUL & HEART in VSCode & Atom #28

Open nicochatzi opened 4 years ago

nicochatzi commented 4 years ago

Changes

Soulpatch

Also, might be worth mentioning in tools/editors/vs_code_extension/README.md that you can associate a .soulpatch file to JSON to get highlighting by adding this to the file association setting in VSCode:

"files.associations": {
    "*.soulpatch": "json"
},

Note for porting to Atom

Both editors use regex pattern matching with TextMate grammar so porting is trivial. Basically just json2cson. Some patterns regarding bracket and parentheses detection were removed because they were interfering with other rules.