ligo/tools/lsp/vscode-plugin/syntaxes/ligo.configuration.json

30 lines
544 B
JSON
Raw Normal View History

{
"comments": {
"lineComment": "//",
"blockComment": [ "(*", "*)" ]
},
"brackets": [
["{", "}"],
["[", "]"],
["(", ")"]
],
"autoClosingPairs": [
["{", "}"],
["[", "]"],
["(", ")"],
["\"", "\""],
["'", "'"],
["(*", "*)"],
["begin", "end"]
],
"surroundingPairs": [
["{", "}"],
["[", "]"],
["(", ")"],
["\"", "\""],
["'", "'"],
["(*", "*)"],
["begin", "end"]
]
}