From 115eacba9be0487689a74a452ec6d174a39f1fc2 Mon Sep 17 00:00:00 2001 From: Jerome Luckenbach Date: Mon, 15 Mar 2021 19:44:34 +0100 Subject: [PATCH] Small improvements and changelog (#241) * Small improvements. Signed-off-by: Jerome Luckenbach * Update changelog. Signed-off-by: Jerome Luckenbach --- .vscode/extensions.json | 3 +-- .vscode/launch.json | 2 +- .vscode/tasks.json | 2 +- CHANGELOG.md | 4 ++++ meta/language-configuration.json | 10 +++++----- 5 files changed, 12 insertions(+), 9 deletions(-) diff --git a/.vscode/extensions.json b/.vscode/extensions.json index f708324..a7f9c3b 100644 --- a/.vscode/extensions.json +++ b/.vscode/extensions.json @@ -1,7 +1,6 @@ { "recommendations": [ "dbaeumer.vscode-eslint", - "esbenp.prettier-vscode", - "daghostman.vs-treeview" + "esbenp.prettier-vscode" ] } \ No newline at end of file diff --git a/.vscode/launch.json b/.vscode/launch.json index b52ba1a..a4c085b 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -1,6 +1,6 @@ // A launch configuration that compiles the extension and then opens it inside a new window { - "version": "0.1.0", + "version": "0.2.0", "configurations": [ { "name": "Launch Extension", diff --git a/.vscode/tasks.json b/.vscode/tasks.json index cbe2bdf..0309598 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -1,4 +1,4 @@ - // Available variables which can be used inside of strings. +// Available variables which can be used inside of strings. // ${workspaceRoot}: the root folder of the team // ${file}: the current opened file // ${fileBasename}: the current opened file's basename diff --git a/CHANGELOG.md b/CHANGELOG.md index 8bea1f6..f0e8bba 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +- Dependency fixes (#239) +- Repository automation (ff9de716cd2473f24d9868fd2d19ebc3f366e7a4) +- Small fixes (#241) + ## [0.8.1] - 2021-02-28 ### Changed diff --git a/meta/language-configuration.json b/meta/language-configuration.json index 8940d77..5786fa1 100644 --- a/meta/language-configuration.json +++ b/meta/language-configuration.json @@ -13,11 +13,11 @@ ], // symbols that are auto closed when typing "autoClosingPairs": [ - ["{", "}"], - ["[", "]"], - ["(", ")"], - ["\"", "\""], - ["'", "'"] + {"open": "{", "close": "}"}, + {"open": "[", "close": "]"}, + {"open": "(", "close": ")"}, + {"open": "\"", "close": "\"", "notIn": ["string"]}, + {"open": "'", "close": "'", "notIn": ["string", "comment"]}, ], // symbols that that can be used to surround a selection "surroundingPairs": [