Answers for "how to custom the color of bracket pair colorizer"

0

how to custom the color of bracket pair colorizer

"bracketPairColorizer.independentPairColors": [
        [
          "()",
          [
            "Yellow"
          ],
          "Red" // use when right bracket is missing
        ],
        [
          "[]",
          [
            "Purple"
          ],
          "Red"
        ],
        [
          "{}",
          [
            "Blue"
          ],
          "Red"
        ]
    ]
Posted by: Guest on April-25-2021
0

how to custom the color of bracket pair colorizer

"bracketPairColorizer.colorMode": "Independent",
Posted by: Guest on April-25-2021

Code answers related to "how to custom the color of bracket pair colorizer"

Browse Popular Code Answers by Language