Fix bracket settings

This commit is contained in:
Kolja Lampe
2019-02-10 12:23:49 +01:00
parent 97f39a2c9f
commit 6e9dc9a27e
2 changed files with 55 additions and 85 deletions

View File

@@ -1,62 +0,0 @@
{
"comments": {
"lineComment": "--",
"blockComment": [
"{-",
"-}"
]
},
"brackets": [
[
"{",
"}"
],
[
"[",
"]"
],
[
"(",
")"
]
],
"surroundingPairs": [
[
"{",
"}"
],
[
"[",
"]"
],
[
"(",
")"
],
[
"\"",
"\""
]
],
"autoClosingPairs": [
[
"(",
")"
],
[
"{",
"}"
],
[
"[",
"]"
],
[
"\"",
"\""
]
],
"folding": {
"offSide": true
}
}

View File

@@ -1,30 +1,62 @@
{
"comments": {
// symbol used for single line comment. Remove this entry if your language does not support line comments
"lineComment": "//",
// symbols used for start and end a block comment. Remove this entry if your language does not support block comments
"blockComment": [ "/*", "*/" ]
"lineComment": "--",
"blockComment": [
"{-",
"-}"
]
},
// symbols used as brackets
"brackets": [
["{", "}"],
["[", "]"],
["(", ")"]
[
"{",
"}"
],
[
"[",
"]"
],
[
"(",
")"
]
],
// symbols that are auto closed when typing
"autoClosingPairs": [
["{", "}"],
["[", "]"],
["(", ")"],
["\"", "\""],
["'", "'"]
],
// symbols that that can be used to surround a selection
"surroundingPairs": [
["{", "}"],
["[", "]"],
["(", ")"],
["\"", "\""],
["'", "'"]
]
[
"{",
"}"
],
[
"[",
"]"
],
[
"(",
")"
],
[
"\"",
"\""
]
],
"autoClosingPairs": [
[
"(",
")"
],
[
"{",
"}"
],
[
"[",
"]"
],
[
"\"",
"\""
]
],
"folding": {
"offSide": true
}
}