diff options
author | KillTheMule <KillTheMule@users.noreply.github.com> | 2020-09-30 21:28:21 +0200 |
---|---|---|
committer | KillTheMule <KillTheMule@users.noreply.github.com> | 2020-09-30 21:28:21 +0200 |
commit | 02dcc3c11ad72e0ae3c6704af6b08d9275ed5470 (patch) | |
tree | 439ad79a0ec632c7ac8b4e40bf0d05169ffecfcd /src | |
parent | c1a740ae339c0d4de79ad5b82d540a671bd90505 (diff) | |
download | rneovim-02dcc3c11ad72e0ae3c6704af6b08d9275ed5470.tar.gz rneovim-02dcc3c11ad72e0ae3c6704af6b08d9275ed5470.tar.bz2 rneovim-02dcc3c11ad72e0ae3c6704af6b08d9275ed5470.zip |
Fix byte updates for blockwise paste at buffer end
Diffstat (limited to 'src')
-rw-r--r-- | src/nvim/ops.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/nvim/ops.c b/src/nvim/ops.c index 6459dbfe6e..8329daf5f1 100644 --- a/src/nvim/ops.c +++ b/src/nvim/ops.c @@ -3109,6 +3109,9 @@ void do_put(int regname, yankreg_T *reg, int dir, long count, int flags) for (i = 0; i < y_size; i++) { int spaces; char shortline; + // can just be 0 or 1, needed for blockwise paste beyond the current + // buffer end + int lines_appended = 0; bd.startspaces = 0; bd.endspaces = 0; @@ -3122,6 +3125,7 @@ void do_put(int regname, yankreg_T *reg, int dir, long count, int flags) break; } nr_lines++; + lines_appended = 1; } /* get the old line and advance to the position to insert at */ oldp = get_cursor_line_ptr(); @@ -3194,7 +3198,7 @@ void do_put(int regname, yankreg_T *reg, int dir, long count, int flags) memmove(ptr, oldp + bd.textcol + delcount, (size_t)columns); ml_replace(curwin->w_cursor.lnum, newp, false); extmark_splice_cols(curbuf, (int)curwin->w_cursor.lnum-1, bd.textcol, - delcount, (int)totlen, kExtmarkUndo); + delcount, (int)totlen + lines_appended, kExtmarkUndo); ++curwin->w_cursor.lnum; if (i == 0) |