The VS Code extension for the Vel language.
- Auto indentation
- Syntax highlighting
- Auto formatting
- LSP client
This extension is not yet published to VS Code's marketplace.
To install the extension locally, install vsce
to npm
by:
> npm install @vscode/vsce -g
And run in this folder:
> vsce package
This generates the package vel-*.vsix
, so install it to your VS Code by:
> code --install-extension vel-*.vsix
If you have modified vel.tmLanguage.yml
,
regenerate vel.tmLanguage.json
.
For that, you can install yq
and run:
> yq -o=j '.' syntaxes/vel.tmLanguage.yml > syntaxes/vel.tmLanguage.json
The build and install are automated by make
(see Makefile
).