Is this extension compatible with single/double quote characters?
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": "'"
}
]
Typo:
subtleBarckets versus
subtleBrackets
Also probably you need to escape the double quote "\""
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?
Thanks for your answer. I'll go ahead and close this issue.