mirror of
https://github.com/ksherlock/x65.git
synced 2024-12-29 10:30:32 +00:00
2b52ca29e4
* PrintError has an optional argument for enclosing file * Visual Studio Code extension
25 lines
446 B
JSON
25 lines
446 B
JSON
{
|
|
"comments": {
|
|
"lineComment": ";",
|
|
"blockComment": [ "/*", "*/" ]
|
|
},
|
|
"brackets": [
|
|
["{", "}"],
|
|
["[", "]"],
|
|
["(", ")"]
|
|
],
|
|
"autoClosingPairs": [
|
|
["{", "}"],
|
|
["[", "]"],
|
|
["(", ")"],
|
|
["\"", "\""],
|
|
["'", "'"]
|
|
],
|
|
"surroundingPairs": [
|
|
["{", "}"],
|
|
["[", "]"],
|
|
["(", ")"],
|
|
["\"", "\""],
|
|
["'", "'"]
|
|
]
|
|
} |