github.com/grafana/tanka@v0.26.1-0.20240506093700-c22cfc35c21a/docs/.vscext/heptio.jsonnet/extension/language-configuration.json (about)

     1  {
     2    "comments": {
     3      "lineComment": "//",
     4      "blockComment": [ "/*", "*/" ]
     5    },
     6    // Symbols used as brackets.
     7    "brackets": [
     8      ["{", "}"],
     9      ["[", "]"],
    10      ["(", ")"]
    11    ],
    12    // Symbols that are auto closed when typing.
    13    "autoClosingPairs": [
    14      { "open": "{", "close": "}," },
    15      { "open": "[", "close": "]," },
    16      { "open": "(", "close": ")" },
    17      { "open": "'", "close": "'", "notIn": ["string", "comment"] },
    18      { "open": "\"", "close": "\"", "notIn": ["string"] },
    19      { "open": "/**", "close": " */", "notIn": ["string"] }
    20    ],
    21    // Symbols that that can be used to surround a selection.
    22    "surroundingPairs": [
    23      ["{", "}"],
    24      ["[", "]"],
    25      ["(", ")"],
    26      ["\"", "\""],
    27      ["'", "'"]
    28    ]
    29  }