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 5 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

Typo: subtleBarckets versus subtleBrackets

Also probably you need to escape the double quote "\""

gilescope avatar Jan 28 '21 12:01 gilescope

Ah open and closing pairs need to be unique so I don't think you can do this. I would suggest that < and > are added in by default though maybe that's a bit weird for html but it sure makes sense in rust!

So I think the answer to this question is not at the moment. Move to close?

gilescope avatar Jan 28 '21 12:01 gilescope

Thanks for your answer. I'll go ahead and close this issue.

mkanet avatar Jan 29 '21 04:01 mkanet