Home | History | Annotate | Download | only in tablegen
      1 {
      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     ]
     30 }