mirror of
https://github.com/Noratrieb/riverdelta.git
synced 2026-01-14 16:35:03 +01:00
vscode readme
This commit is contained in:
parent
86dec70f68
commit
60c743d656
2 changed files with 35 additions and 0 deletions
|
|
@ -1,3 +1,7 @@
|
||||||
# a random language compiling to wasm
|
# a random language compiling to wasm
|
||||||
|
|
||||||
The language is not well designed. It's just random garbage.
|
The language is not well designed. It's just random garbage.
|
||||||
|
|
||||||
|
## vscode extension
|
||||||
|
|
||||||
|
there's even a vscode extension! see [the readme](./vscode/README.md)
|
||||||
|
|
@ -1,3 +1,34 @@
|
||||||
# riverdelta
|
# riverdelta
|
||||||
|
|
||||||
language support for the [riverdelta](https://github.com/Nilstrieb/riverdelta) language.
|
language support for the [riverdelta](https://github.com/Nilstrieb/riverdelta) language.
|
||||||
|
|
||||||
|
# installation
|
||||||
|
|
||||||
|
## normal
|
||||||
|
|
||||||
|
copy this directory into your `.vscode/extensions`
|
||||||
|
|
||||||
|
## nix
|
||||||
|
|
||||||
|
if you use nix to manage extensions you can just copy
|
||||||
|
|
||||||
|
```nix
|
||||||
|
pkgs.vscode-utils.buildVscodeExtension {
|
||||||
|
name = "riverdelta";
|
||||||
|
version = "0.1.0";
|
||||||
|
src = builtins.fetchGit {
|
||||||
|
url = "https://github.com/Nilstrieb/riverdelta";
|
||||||
|
rev = "86dec70f686964615a93c5316aae460bc0fc5d6d";
|
||||||
|
};
|
||||||
|
vscodeExtPublisher = "Nilstrieb";
|
||||||
|
vscodeExtName = "riverdelta";
|
||||||
|
vscodeExtUniqueId = "Nilstrieb.riverdelta";
|
||||||
|
buildPhase = ''
|
||||||
|
runHook preBuild;
|
||||||
|
cd ./vscode
|
||||||
|
runHook postBuild;
|
||||||
|
'';
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
which probably works i think (maybe you want to update the hash to something newer although its unlikey this extension will change that much)
|
||||||
Loading…
Add table
Add a link
Reference in a new issue