[lit] Improve lit.Run class
[llvm-complete.git] / utils / vscode / tablegen / language-configuration.json
blobaa2571000769a7cb8de4e20f5bbc53fa4634b8ce
2     "comments": {
3         // symbol used for single line comment. Remove this entry if your language does not support line comments
4         "lineComment": "//",
5         // symbols used for start and end a block comment. Remove this entry if your language does not support block comments
6         "blockComment": [ "/*", "*/" ]
7     },
8     // symbols used as brackets
9     "brackets": [
10         ["{", "}"],
11         ["[", "]"],
12         ["(", ")"]
13     ],
14     // symbols that are auto closed when typing
15     "autoClosingPairs": [
16         ["{", "}"],
17         ["[", "]"],
18         ["(", ")"],
19         ["\"", "\""],
20         ["'", "'"]
21     ],
22     // symbols that that can be used to surround a selection
23     "surroundingPairs": [
24         ["{", "}"],
25         ["[", "]"],
26         ["(", ")"],
27         ["\"", "\""],
28         ["'", "'"]
29     ]