mirror of
https://github.com/neovim/neovim.git
synced 2026-01-30 17:11:11 +10:00
If you would insert element X at position j, then if you are moving that same element X from position i < j, you should move it to position j - 1, because you are losing an element. This error caused a gap to be left in the array, so that it looked like [x, null, y] instead of [x, y], where len = 2. This triggered #25147. Fixes: #25147
60 KiB
60 KiB