vscode: some docs, squiggleU support
This commit is contained in:
parent
a81c0aae0b
commit
9aa97f66b0
|
@ -4,6 +4,17 @@ _[marketplace](https://marketplace.visualstudio.com/items?itemName=QURI.vscode-s
|
||||||
|
|
||||||
This extension provides support for [Squiggle](https://www.squiggle-language.com/) in VS Code.
|
This extension provides support for [Squiggle](https://www.squiggle-language.com/) in VS Code.
|
||||||
|
|
||||||
|
Features:
|
||||||
|
|
||||||
|
- Preview `.squiggle` files in a preview pane
|
||||||
|
- Syntax highlighting for `.squiggle` and `.squiggleU` files
|
||||||
|
|
||||||
|
# Configuration
|
||||||
|
|
||||||
|
Some preview settings, e.g. whether to show the summary table or types of outputs, can be configurable on in the VS Code settings and persist between different preview sessions.
|
||||||
|
|
||||||
|
Check out the full list of Squiggle settings in the main VS Code settings.
|
||||||
|
|
||||||
# Build locally
|
# Build locally
|
||||||
|
|
||||||
We assume you ran `yarn` at the monorepo level for all dependencies.
|
We assume you ran `yarn` at the monorepo level for all dependencies.
|
||||||
|
|
|
@ -33,6 +33,16 @@
|
||||||
"Squiggle"
|
"Squiggle"
|
||||||
],
|
],
|
||||||
"configuration": "./language-configuration.json"
|
"configuration": "./language-configuration.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "squiggleU",
|
||||||
|
"extensions": [
|
||||||
|
".squiggleU"
|
||||||
|
],
|
||||||
|
"aliases": [
|
||||||
|
"SquiggleU"
|
||||||
|
],
|
||||||
|
"configuration": "./language-configuration.json"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"grammars": [
|
"grammars": [
|
||||||
|
@ -40,6 +50,11 @@
|
||||||
"language": "squiggle",
|
"language": "squiggle",
|
||||||
"scopeName": "source.squiggle",
|
"scopeName": "source.squiggle",
|
||||||
"path": "./syntaxes/squiggle.tmLanguage.json"
|
"path": "./syntaxes/squiggle.tmLanguage.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"language": "squiggleU",
|
||||||
|
"scopeName": "source.squiggle",
|
||||||
|
"path": "./syntaxes/squiggle.tmLanguage.json"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"customEditors": [
|
"customEditors": [
|
||||||
|
|
Loading…
Reference in New Issue
Block a user