Small improvements and changelog (#241)
* Small improvements. Signed-off-by: Jerome Luckenbach <github@luckenba.ch> * Update changelog. Signed-off-by: Jerome Luckenbach <github@luckenba.ch>pull/244/head
parent
ff9de716cd
commit
115eacba9b
|
@ -1,7 +1,6 @@
|
|||
{
|
||||
"recommendations": [
|
||||
"dbaeumer.vscode-eslint",
|
||||
"esbenp.prettier-vscode",
|
||||
"daghostman.vs-treeview"
|
||||
"esbenp.prettier-vscode"
|
||||
]
|
||||
}
|
|
@ -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",
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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": [
|
||||
|
|
Loading…
Reference in New Issue