|
|
|
|
|
by efnx
4829 days ago
|
|
This would be easily done by recording a macro and replaying it numlines/2-1 times. Possibly if starting on the first line:
q,a,j,$,i, odd,esc,j,q,4@a qa // start recording into 'a' register
j // move down
$ // move last char on line
i // insert mode
odd //
esc // back to command mode
j // move down
4@a // replay macro 4 times (if there are 8 more lines)
|
|