You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
449 B
23 lines
449 B
1 year ago
|
# Language support for the MinBASIC language
|
||
|
|
||
|
This small vscode extension provides language support for the MinBASIC language.
|
||
|
|
||
|
To build it, run the following:
|
||
|
|
||
|
```sh
|
||
|
npm i -g @vscode/vsce
|
||
|
vsce package
|
||
|
|
||
|
# Alternatively,
|
||
|
npx @vscode/vsce package
|
||
|
```
|
||
|
|
||
|
Then, install it by running:
|
||
|
|
||
|
```sh
|
||
|
vscodium --install-extension ./minbasic-vscode-*.vsix
|
||
|
|
||
|
# If you're using the proprietary builds of VSCode:
|
||
|
vscode --install-extension ./minbasic-vscode-*.vsix
|
||
|
```
|