Existe-t-il un moyen dédié de fusionner deux blocs de texte en entrelacant des lignes, comme en passant de ceci:
a1
a2
a3
a4
b1
b2
b3
b4
pour que:
a1
b1
a2
b2
a3
b3
a4
b4
en quelques commandes?
EDIT : J'aime vraiment la solution de Sato Katsura , voici comment je l'ai mise en œuvre:
function! Interleave()
" retrieve last selected area position and size
let start = line(".")
execute "normal! gvo\<esc>"
let end = line(".")
let [start, end] = sort([start, end], "n")
let size = (end - start + 1) / 2
" and interleave!
for i in range(size - 1)
execute (start + size + i). 'm' .(start + 2 * i)
endfor
endfunction
" Select your two contiguous, same-sized blocks, and use it to Interleave ;)
vnoremap <pickYourMap> <esc>:call Interleave()<CR>
scroll-binding
deux fenêtres Vim.
b1
, puis je tape vip
pour sélectionner le morceau entier, puis ,it
qui est le <map-I've-Picked>
. Ça ne marche pas de votre côté?