Skip to content

Commit

Permalink
v0.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
haoranpb committed Apr 10, 2022
1 parent 9a5b527 commit 078bc79
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ This extension adds language support for [Futhark](https://futhark-lang.org/), p

- Warnings and errors diagnostics from futhark compiler
- Information on hover
- Syntax highlighting
- Basic language features, e.g. comment toggling, etc
- More to come...

## Common questions
Expand Down Expand Up @@ -58,7 +60,7 @@ Github Actions [publish-vscode-extension](https://github.com/HaaLeo/publish-vsco
```shell
git add package.json
git commit -m "x.y.z"
git push --tags
git push && git push --tags
```

TBA: More information about how to publish, e.g. creation of Personal Access Token, etc. ([source](https://code.visualstudio.com/api/working-with-extensions/publishing-extension))
5 changes: 4 additions & 1 deletion language-configuration.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,20 @@
},
"brackets": [
["[", "]"],
["(", ")"]
["(", ")"],
["{", "}"]
],
"autoClosingPairs": [
{ "open": "[", "close": "]" },
{ "open": "(", "close": ")" },
{ "open": "{", "close": "}" },
{ "open": "'", "close": "'", "notIn": ["string", "comment"] },
{ "open": "\"", "close": "\"", "notIn": ["string"] }
],
"surroundingPairs": [
["[", "]"],
["(", ")"],
["{", "}"],
["'", "'"],
["\"", "\""]
]
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "futhark-vscode",
"displayName": "Futhark",
"description": "Futhark language support powered by the Futhark Language Server",
"version": "0.0.4",
"version": "0.0.5",
"publisher": "DIKU",
"repository": "github:diku-dk/futhark-vscode",
"engines": {
Expand Down

0 comments on commit 078bc79

Please sign in to comment.