From 078bc7901df5a4f5e342e1a24e1b3c4a6fb33cf2 Mon Sep 17 00:00:00 2001 From: haoranpb Date: Sun, 10 Apr 2022 11:39:52 +0200 Subject: [PATCH] v0.0.5 --- README.md | 4 +++- language-configuration.json | 5 ++++- package.json | 2 +- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 84dbddc..e3c4f44 100644 --- a/README.md +++ b/README.md @@ -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 @@ -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)) diff --git a/language-configuration.json b/language-configuration.json index dc7578d..6e90f3c 100644 --- a/language-configuration.json +++ b/language-configuration.json @@ -4,17 +4,20 @@ }, "brackets": [ ["[", "]"], - ["(", ")"] + ["(", ")"], + ["{", "}"] ], "autoClosingPairs": [ { "open": "[", "close": "]" }, { "open": "(", "close": ")" }, + { "open": "{", "close": "}" }, { "open": "'", "close": "'", "notIn": ["string", "comment"] }, { "open": "\"", "close": "\"", "notIn": ["string"] } ], "surroundingPairs": [ ["[", "]"], ["(", ")"], + ["{", "}"], ["'", "'"], ["\"", "\""] ] diff --git a/package.json b/package.json index 40cc91c..9648e07 100644 --- a/package.json +++ b/package.json @@ -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": {