minecraft-python / vscode_mcpy_extension /language-configuration.json
Minecraft3193092's picture
Upload 2 files
634095c
raw
history blame contribute delete
322 Bytes
{
"comments": {
"lineComment": "#"
},
"brackets": [
[
"[",
"]"
],
],
"autoClosingPairs": [
{
"open": "\"",
"close": "\"",
"notIn": ["string"]
},
{
"open": "[",
"close": "]",
"notIn": ["comment"]
},
],
"surroundingPairs": [
[
"\"",
"\""
],
[
"[",
"]"
],
]
}