I'd like to select an object around the insertion point/cursor in Sublime Text,
eg, given:
{
'foo':'bar',
'baz':{
'zoo|':'zam' <- Note insertion point here
}
}
I'd like to be able to highlight the object around the insertion point, in this case:
The string 'zoo'
The hashmap containing that string
The parent hashmap
Depending on how many times I repeat the key combo / mouse action.
Is there a way to do this, either built into sublime or with an extension?