Files
Codesys-MCP/vscode_codesys_companion/language-configuration.json

48 lines
503 B
JSON

{
"comments": {
"lineComment": "//",
"blockComment": [
"(*",
"*)"
]
},
"brackets": [
[
"(",
")"
],
[
"[",
"]"
]
],
"autoClosingPairs": [
{
"open": "(",
"close": ")"
},
{
"open": "[",
"close": "]"
},
{
"open": "\"",
"close": "\""
}
],
"surroundingPairs": [
[
"(",
")"
],
[
"[",
"]"
],
[
"\"",
"\""
]
]
}