Tooling
VSCode Extension
Get syntax highlighting, bracket matching, and comment toggling for .tiramisu files in VSCode.
The Tiramisu VSCode extension adds first-class editor support for .tiramisu files, including syntax highlighting and language configuration.
Features
- Syntax highlighting for Tiramisu markup — function calls
- parameters
- strings
- and comments
- Bracket matching and auto-closing for curly braces and brackets
- Comment toggling with
Ctrl+/(line comments using//)
Installation
The extension is not yet published to the VSCode Marketplace. You can build and install it from source, or download a pre-built .vsix from the GitHub releases page.
From a Release
Download the latest .vsix file from GitHub releases, then install it:
code --install-extension tiramisu-*.vsix Or in VSCode, open the Command Palette (Ctrl+Shift+P), select Extensions: Install from VSIX..., and choose the downloaded file.
From Source
Clone the repository and build the extension:
git clone https://github.com/timeleaplabs/tiramisu.git
cd tiramisu/editors/vscode
npm install
npm run package This produces a .vsix file you can install:
code --install-extension tiramisu-*.vsix Info
The extension source lives in the
editors/vscode directory of the Tiramisu repository.