fork of https://github.com/tree-sitter/tree-sitter-graph
1{
2 "comments": {
3 "lineComment": ";"
4 },
5 // symbols used as brackets
6 "brackets": [
7 ["{", "}"],
8 ["[", "]"],
9 ["(", ")"]
10 ],
11 // symbols that are auto closed when typing
12 "autoClosingPairs": [
13 ["{", "}"],
14 ["[", "]"],
15 ["(", ")"],
16 ["\"", "\""]
17 ],
18 // symbols that can be used to surround a selection
19 "surroundingPairs": [
20 ["{", "}"],
21 ["[", "]"],
22 ["(", ")"],
23 ["\"", "\""]
24 ]
25}