I would like to reverse the order of line fragments selected within a Visual Block in vim. That is, starting from
one = [33];
two = [22];
three = [11];
I would like to get,
one = [11];
two = [22];
three = [33];
by selecting the block of
33
22
11
and reversing the line order only within this block.
Can this be achieved? I tried using !tac, as described in a related question, but that reversed entire lines, not just the selected block.