Content Formula Template
Add the .tem language to VSCode. Add the following to your `settings.json``.
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope": "variable.parameter.tem",
"settings": {
"foreground": "#FF8811",
"fontStyle": ""
}
},
{
"scope": "entity.name.tag.prompt.tem",
"settings": {
"foreground": "#2E54FF",
"fontStyle": ""
}
},
{
"scope": "entity.name.tag.foreach.tem",
"settings": {
"foreground": "#2eff77",
"fontStyle": ""
}
},
{
"scope": "entity.name.tag.endprompt.tem",
"settings": {
"foreground": "#EEE237",
"fontStyle": ""
}
},
{
"scope": "entity.name.tag.baseprompt.tem",
"settings": {
"foreground": "#2CFFD8",
"fontStyle": ""
}
},
{
"scope": "entity.name.tag.data.tem",
"settings": {
"foreground": "#FC5383",
"fontStyle": ""
}
}
]
}
For me
Add the .tem language to VSCode. To update this extension, go to the marketplace and upload the .vsix. You can generate it by going to the root and run vsce package
.