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.
35 lines
829 B
JSON
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"
|
|
}
|
|
]
|
|
}
|
|
}
|