given the following:
{
int a = 123;
int b = 456;
}
i want to change it to:
{
int a = 123;int b = 456;
}
if i was using a regular text editor, i would go to the 2nd line, then Home, Shift+Up,Shift+End,Delete
what's vim way of doing this? it should work with any amount of whitespace between line 1 and line 2.
Home,Ctrl+Backspaceon the second line orEnd,Ctrl+Deleteon the first – mihai Jan 1 at 10:12