Files
flux/vscode-flux/package.json
Jooris Hadeler 0e08640f59 Add VSCode syntax highlighting extension for Flux
Adds the vscode-flux extension with TextMate grammar covering keywords,
types, literals, operators, comments, and function/struct name highlighting.
Supports .flux and .flx file extensions.
2026-03-10 14:42:46 +01:00

35 lines
829 B
JSON

{
"name": "flux-lang",
"displayName": "Flux",
"description": "Syntax highlighting for the Flux programming language — a simple, fast systems language in the spirit of C and Rust.",
"version": "0.1.0",
"publisher": "flux-lang",
"engines": {
"vscode": "^1.74.0"
},
"categories": [
"Programming Languages"
],
"contributes": {
"languages": [
{
"id": "flux",
"aliases": ["Flux", "flux"],
"extensions": [".flux", ".flx"],
"configuration": "./language-configuration.json",
"icon": {
"light": "./icons/flux-light.png",
"dark": "./icons/flux-dark.png"
}
}
],
"grammars": [
{
"language": "flux",
"scopeName": "source.flux",
"path": "./syntaxes/flux.tmLanguage.json"
}
]
}
}