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
I'm messing around with overriding some highlight groups and I'm noticing that jsDestructuringBracesdoes include array destructuring symbols ([ and ]), which is fine, but jsDestructuringNoiseonly includes , for object destructuring and not array destructuring.
has the braces and commas highlighted as "delimiter" but in
function([foo,bar]){}
only the brackets are highlighted and not the comma. Small thing really since they're marked as "noise" by default, but it seems like they should be the same.
The text was updated successfully, but these errors were encountered:
I'm messing around with overriding some highlight groups and I'm noticing that
jsDestructuringBraces
does include array destructuring symbols ([
and]
), which is fine, butjsDestructuringNoise
only includes,
for object destructuring and not array destructuring.E.g. if I do
HiLink jsDestructuringBraces Delimiter
HiLink jsDestructuringNoise Delimiter
Then
has the braces and commas highlighted as "delimiter" but in
only the brackets are highlighted and not the comma. Small thing really since they're marked as "noise" by default, but it seems like they should be the same.
The text was updated successfully, but these errors were encountered: