mirror of
https://github.com/godotengine/godot-vscode-plugin.git
synced 2025-12-31 13:48:24 +03:00
26 lines
446 B
JSON
26 lines
446 B
JSON
{
|
|
"comments": {
|
|
"lineComment": "//",
|
|
"blockComment": ["/*", "*/"]
|
|
},
|
|
"brackets": [
|
|
["(", ")"],
|
|
["[", "]"],
|
|
["{", "}"]
|
|
],
|
|
"autoClosingPairs": [
|
|
["'", "'"],
|
|
["\"", "\""],
|
|
["(", ")"],
|
|
["[", "]"],
|
|
["{", "}"]
|
|
],
|
|
"surroundingPairs": [
|
|
["'", "'"],
|
|
["\"", "\""],
|
|
["(", ")"],
|
|
["[", "]"],
|
|
["{", "}"]
|
|
]
|
|
}
|