subtle-brackets icon indicating copy to clipboard operation
subtle-brackets copied to clipboard

Is this extension compatible with single/double quote characters?

Open mkanet opened this issue 3 years ago • 3 comments

I would like for VS Code to highlight single and double quote characters just like Sublime Text. I tried to add the below settings; however, it didn't seem to work.

"subtleBarckets.pairs" : [
  {
    "open": """,
    "close": """
  },
 {
    "open": "'",
    "close": "'"
  }
]

mkanet avatar Oct 26 '20 21:10 mkanet