Skip to content
| Marketplace
Sign in
Visual Studio Code>Programming Languages>Content Formula TempalteNew to Visual Studio Code? Get it now.
Content Formula Tempalte

Content Formula Tempalte

Marijn Bent

|
56 installs
| (1) | Free
Add support for the .tem content formula templating.
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
Copied to clipboard
More Info

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.

  • Contact us
  • Jobs
  • Privacy
  • Manage cookies
  • Terms of use
  • Trademarks
© 2025 Microsoft