This repository was archived by the owner on Dec 15, 2022. It is now read-only.

Description
In a case like
[ { a: (2 |+ 3) * 4 }, { a: (2 - 4) / 4 } ]
Where the cursor is just before the + (it's the |), using select-inside-brackets should (as it does) select the 2 + 3. Selection marked with strikethrough.
[ { a: (2 + 3) * 4 }, { a: (2 - 4) / 4 } ]
But then, using select-inside-brackets again would expand the selection further until the {}:
[ {a: (2 + 3) * 4}, { a: (2 - 4) / 4 } ]
And using it once again would expand until the []:
[{ a: (2 + 3) * 4 }, { a: (2 - 4) / 4 }]