Skip to content

Latest commit

 

History

History

vel-vscode

VS Code Extension for Vel

Vel's icon

The VS Code extension for the Vel language.

Features

  • Auto indentation
  • Syntax highlighting
  • Auto formatting
  • LSP client

Install

This extension is not yet published to VS Code's marketplace.

Local install

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).