If I have this line visually selected
Alpha <-- selected
Bravo
Charlie
is there a vim command to move the selected area down, without adding to the original selection?
Alpha
Bravo
Charlie <-- selected
hjkl key will only add lines to your selection. And I didn’t see anything in visual’s help doc that indicated it could be done.
This will certainly do it:
jjVV
But it isn’t really any different from canceling the original selection first:
escjjV
Or:
VjjV