]> granicus.if.org Git - vim/commitdiff
patch 8.0.1779: deleting in a block selection causes problems v8.0.1779
authorBram Moolenaar <Bram@vim.org>
Mon, 30 Apr 2018 15:21:03 +0000 (17:21 +0200)
committerBram Moolenaar <Bram@vim.org>
Mon, 30 Apr 2018 15:21:03 +0000 (17:21 +0200)
Problem:    Deleting in a block selection causes problems.
Solution:   Check the length of the line before adding bd.textcol and
            bd.textlen. (Christian Brabandt, closes #2825)

src/ops.c
src/testdir/test_blockedit.vim
src/version.c

index fe29e8ae74c007b9f41630d189e47dc45ba42464..0902b04797cf29697687b9e09262152b4b1ce9f1 100644 (file)
--- a/src/ops.c
+++ b/src/ops.c
@@ -2703,6 +2703,8 @@ op_insert(oparg_T *oap, long count1)
     {
        struct block_def        bd2;
        int                     did_indent = FALSE;
+       size_t                  len;
+       int                     add;
 
        /* If indent kicked in, the firstline might have changed
         * but only do that, if the indent actually increased. */
@@ -2781,9 +2783,15 @@ op_insert(oparg_T *oap, long count1)
         * Subsequent calls to ml_get() flush the firstline data - take a
         * copy of the required string.
         */
-       firstline = ml_get(oap->start.lnum) + bd.textcol;
+       firstline = ml_get(oap->start.lnum);
+       len = STRLEN(firstline);
+       add = bd.textcol;
        if (oap->op_type == OP_APPEND)
-           firstline += bd.textlen;
+           add += bd.textlen;
+       if ((size_t)add > len)
+           firstline += len;  // short line, point to the NUL
+       else
+           firstline += add;
        if (pre_textlen >= 0
                     && (ins_len = (long)STRLEN(firstline) - pre_textlen) > 0)
        {
index 4a8d59952e4510b7d77318ec533bd70162a6f67d..527224ccd2f817661d1720e9033d2a6c3c9df7b2 100644 (file)
@@ -16,5 +16,18 @@ func Test_blockinsert_indent()
   bwipe!
 endfunc
 
+func Test_blockinsert_delete()
+  new
+  let _bs = &bs
+  set bs=2
+  call setline(1, ['case Arg is ', '        when Name_Async,', '        when Name_Num_Gangs,', 'end if;'])
+  exe "norm! ggjVj\<c-v>$o$A\<bs>\<esc>"
+  "call feedkeys("Vj\<c-v>$o$A\<bs>\<esc>", 'ti')
+  call assert_equal(["case Arg is ", "        when Name_Async", "        when Name_Num_Gangs,", "end if;"],
+        \ getline(1,'$'))
+  " reset to sane state
+  let &bs = _bs
+  bwipe!
+endfunc
 
 " vim: shiftwidth=2 sts=2 expandtab
index 9b65751b166c7d73a1884c9e0cb594805474b98b..1f360869e7e1d664e965d9545b184f2b059ee154 100644 (file)
@@ -761,6 +761,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    1779,
 /**/
     1778,
 /**/