Files
godot-vscode-plugin/configurations/gdscript-configuration.json
2022-06-17 01:03:00 +02:00

83 lines
1.2 KiB
JSON

{
"comments": {
"lineComment": "#",
"blockComment": [
"\"\"\"",
"\"\"\""
]
},
"brackets": [
[
"(",
")"
],
[
"[",
"]"
],
[
"{",
"}"
]
],
"autoClosingPairs": [
[
"'",
"'"
],
[
"\"",
"\""
],
[
"(",
")"
],
[
"[",
"]"
],
[
"{",
"}"
]
],
"surroundingPairs": [
[
"'",
"'"
],
[
"\"",
"\""
],
[
"(",
")"
],
[
"[",
"]"
],
[
"{",
"}"
]
],
"folding": {
"offSide": true,
"markers": {
"start": "^\\s*#\\s*region\\b",
"end": "^\\s*#\\s*endregion\\b"
}
},
"onEnterRules": [
{
"beforeText": ":\\s*$",
"action": {
"indent": "indent"
}
}
]
}