You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A lot of languages use ' or " or ` for string quotations and programmers jump around with which they are using depending on the string concerned.
Currently bracket pairs of various kinds ( ) [ ] { } highlight when the cursor is on one of them when they are in the same type of quoted string but not different quotation types, so -
The brackets highlight here when touched - 'a(bc'+'de)f'
but don't with these -
'a(bc'+"de)f"
'a(bc'+`de)f`
My view is matching should also be done when quote marks differ (like the second 2). It's very helpful that brackets are matched within strings as well as within code.
Cheers! David
The text was updated successfully, but these errors were encountered:
A lot of languages use ' or " or ` for string quotations and programmers jump around with which they are using depending on the string concerned.
Currently bracket pairs of various kinds ( ) [ ] { } highlight when the cursor is on one of them when they are in the same type of quoted string but not different quotation types, so -
The brackets highlight here when touched -
'a(bc'+'de)f'
but don't with these -
My view is matching should also be done when quote marks differ (like the second 2). It's very helpful that brackets are matched within strings as well as within code.
Cheers! David
The text was updated successfully, but these errors were encountered: