]> granicus.if.org Git - vim/commitdiff
patch 8.1.1055: CTRL-G U in Insert mode doesn't work for shift-Left v8.1.1055
authorBram Moolenaar <Bram@vim.org>
Tue, 26 Mar 2019 21:46:05 +0000 (22:46 +0100)
committerBram Moolenaar <Bram@vim.org>
Tue, 26 Mar 2019 21:46:05 +0000 (22:46 +0100)
Problem:    CTRL-G U in Insert mode doesn't work to avoid splitting the undo
            sequence for shift-left and shift-right.
Solution:   Also check dont_sync_undo for shifted cursor keys. (Christian
            Brabandt)

src/edit.c
src/testdir/test_mapping.vim
src/version.c

index 452d4a6dc7a49b60940f7b287b71d9155b48ae78..f15ee8d4c528e91020036e469a2fa3e0562b9ce9 100644 (file)
@@ -236,11 +236,11 @@ static void ins_mousescroll(int dir);
 #if defined(FEAT_GUI_TABLINE) || defined(PROTO)
 static void ins_tabline(int c);
 #endif
-static void ins_left(int end_change);
+static void ins_left(void);
 static void ins_home(int c);
 static void ins_end(int c);
 static void ins_s_left(void);
-static void ins_right(int end_change);
+static void ins_right(void);
 static void ins_s_right(void);
 static void ins_up(int startcol);
 static void ins_pageup(void);
@@ -290,10 +290,10 @@ static int        ins_need_undo;          /* call u_save() before inserting a
                                           char.  Set when edit() is called.
                                           after that arrow_used is used. */
 
-static int     did_add_space = FALSE;  /* auto_format() added an extra space
-                                          under the cursor */
-static int     dont_sync_undo = FALSE; /* CTRL-G U prevents syncing undo for
-                                          the next left/right cursor */
+static int     did_add_space = FALSE;  // auto_format() added an extra space
+                                       // under the cursor
+static int     dont_sync_undo = FALSE; // CTRL-G U prevents syncing undo for
+                                       // the next left/right cursor key
 
 /*
  * edit(): Start inserting text.
@@ -1284,7 +1284,7 @@ doESCkey:
            if (mod_mask & (MOD_MASK_SHIFT|MOD_MASK_CTRL))
                ins_s_left();
            else
-               ins_left(dont_sync_undo == FALSE);
+               ins_left();
            break;
 
        case K_S_LEFT:  /* <S-Left> */
@@ -1296,7 +1296,7 @@ doESCkey:
            if (mod_mask & (MOD_MASK_SHIFT|MOD_MASK_CTRL))
                ins_s_right();
            else
-               ins_right(dont_sync_undo == FALSE);
+               ins_right();
            break;
 
        case K_S_RIGHT: /* <S-Right> */
@@ -9291,10 +9291,10 @@ ins_horscroll(void)
 #endif
 
     static void
-ins_left(
-    int            end_change) /* end undoable change */
+ins_left(void)
 {
     pos_T      tpos;
+    int                end_change = dont_sync_undo == FALSE; // end undoable change
 
 #ifdef FEAT_FOLDING
     if ((fdo_flags & FDO_HOR) && KeyTyped)
@@ -9378,8 +9378,9 @@ ins_end(int c)
 }
 
     static void
-ins_s_left(void)
+ins_s_left()
 {
+    int end_change = dont_sync_undo == FALSE; // end undoable change
 #ifdef FEAT_FOLDING
     if ((fdo_flags & FDO_HOR) && KeyTyped)
        foldOpenCursor();
@@ -9387,18 +9388,22 @@ ins_s_left(void)
     undisplay_dollar();
     if (curwin->w_cursor.lnum > 1 || curwin->w_cursor.col > 0)
     {
-       start_arrow(&curwin->w_cursor);
+       start_arrow_with_change(&curwin->w_cursor, end_change);
+       if (!end_change)
+           AppendCharToRedobuff(K_S_LEFT);
        (void)bck_word(1L, FALSE, FALSE);
        curwin->w_set_curswant = TRUE;
     }
     else
        vim_beep(BO_CRSR);
+    dont_sync_undo = FALSE;
 }
 
     static void
-ins_right(
-    int            end_change) /* end undoable change */
+ins_right(void)
 {
+    int end_change = dont_sync_undo == FALSE; // end undoable change
+
 #ifdef FEAT_FOLDING
     if ((fdo_flags & FDO_HOR) && KeyTyped)
        foldOpenCursor();
@@ -9442,8 +9447,9 @@ ins_right(
 }
 
     static void
-ins_s_right(void)
+ins_s_right()
 {
+    int end_change = dont_sync_undo == FALSE; // end undoable change
 #ifdef FEAT_FOLDING
     if ((fdo_flags & FDO_HOR) && KeyTyped)
        foldOpenCursor();
@@ -9452,12 +9458,15 @@ ins_s_right(void)
     if (curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count
            || gchar_cursor() != NUL)
     {
-       start_arrow(&curwin->w_cursor);
+       start_arrow_with_change(&curwin->w_cursor, end_change);
+       if (!end_change)
+           AppendCharToRedobuff(K_S_RIGHT);
        (void)fwd_word(1L, FALSE, 0);
        curwin->w_set_curswant = TRUE;
     }
     else
        vim_beep(BO_CRSR);
+    dont_sync_undo = FALSE;
 }
 
     static void
index c454fc01cc64e5f288416dfc3fe13fb1bb13902b..61a1edd4ad978fc739ef7c6903db8557b236b697 100644 (file)
@@ -140,9 +140,32 @@ func Test_map_cursor()
   imapclear
 endfunc
 
+func Test_map_cursor_ctrl_gU()
+  " <c-g>U<cursor> works only within a single line
+  nnoremap c<* *Ncgn<C-r>"<C-G>U<S-Left>
+  call setline(1, ['foo', 'foobar', '', 'foo'])
+  call cursor(1,2)
+  call feedkeys("c<*PREFIX\<esc>.", 'xt')
+  call assert_equal(['PREFIXfoo', 'foobar', '', 'PREFIXfoo'], getline(1,'$'))
+  " break undo manually
+  set ul=1000
+  exe ":norm! uu"
+  call assert_equal(['foo', 'foobar', '', 'foo'], getline(1,'$'))
+
+  " Test that it does not work if the cursor moves to the previous line
+  " 2 times <S-Left> move to the previous line
+  nnoremap c<* *Ncgn<C-r>"<C-G>U<S-Left><C-G>U<S-Left>
+  call setline(1, ['', ' foo', 'foobar', '', 'foo'])
+  call cursor(2,3)
+  call feedkeys("c<*PREFIX\<esc>.", 'xt')
+  call assert_equal(['PREFIXPREFIX', ' foo', 'foobar', '', 'foo'], getline(1,'$'))
+  nmapclear
+endfunc
+
+
 " This isn't actually testing a mapping, but similar use of CTRL-G U as above.
 func Test_break_undo()
-  :set whichwrap=<,>,[,]
+  set whichwrap=<,>,[,]
   call feedkeys("G4o\e2k", "xt")
   exe ":norm! iTest3: text with a (parenthesis here\<C-G>U\<Right>new line here\<esc>\<up>\<up>."
   call assert_equal('new line here', getline(line('$') - 3))
index ba149819727d58af2bab2252509909f1eb7b4893..e4e9279267e61efc27ce627969acd4e4c1573086 100644 (file)
@@ -775,6 +775,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    1055,
 /**/
     1054,
 /**/