]> git.ipfire.org Git - thirdparty/vim.git/commitdiff
patch 9.1.0940: Wrong cursor shape with "gq" and 'indentexpr' executes :normal v9.1.0940
authorzeertzjq <zeertzjq@outlook.com>
Tue, 17 Dec 2024 19:26:45 +0000 (20:26 +0100)
committerChristian Brabandt <cb@256bit.org>
Tue, 17 Dec 2024 19:26:45 +0000 (20:26 +0100)
Problem:  Wrong cursor shape with "gq" and 'indentexpr' executes :normal
Solution: Update cursor and mouse shape after restoring old_State.
          (zeertzjq)

closes: #16241

Signed-off-by: zeertzjq <zeertzjq@outlook.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
Solution: Update cursor and mouse shape after restoring old_State.

src/testdir/test_indent.vim
src/textformat.c
src/version.c

index a7e9f425c9bda801cccbd44c4808637252493ba0..0cead5fb1962ab2b42bb0244172e5548d2d29b45 100644 (file)
@@ -1,5 +1,8 @@
 " Test for various indent options
 
+source shared.vim
+source check.vim
+
 func Test_preserveindent()
   new
   " Test for autoindent copying indent from the previous line
@@ -300,4 +303,50 @@ func Test_indent_overflow_count2()
   close!
 endfunc
 
+" Test that mouse shape is restored to Normal mode after using "gq" when
+" 'indentexpr' executes :normal.
+func Test_indent_norm_with_gq()
+  CheckFeature mouseshape
+  CheckCanRunGui
+
+  let lines =<< trim END
+    func Indent()
+      exe "normal! \<Ignore>"
+      return 0
+    endfunc
+
+    setlocal indentexpr=Indent()
+  END
+  call writefile(lines, 'Xindentexpr.vim', 'D')
+
+  let lines =<< trim END
+    vim9script
+    var mouse_shapes = []
+
+    setline(1, [repeat('a', 80), repeat('b', 80)])
+
+    feedkeys('ggVG')
+    timer_start(50, (_) => {
+      mouse_shapes += [getmouseshape()]
+      timer_start(50, (_) => {
+        feedkeys('gq')
+        timer_start(50, (_) => {
+          mouse_shapes += [getmouseshape()]
+          timer_start(50, (_) => {
+            writefile(mouse_shapes, 'Xmouseshapes')
+            quit!
+          })
+        })
+      })
+    })
+  END
+  call writefile(lines, 'Xmouseshape.vim', 'D')
+
+  call RunVim([], [], "-g -S Xindentexpr.vim -S Xmouseshape.vim")
+  call WaitForAssert({-> assert_equal(['rightup-arrow', 'arrow'],
+        \ readfile('Xmouseshapes'))}, 300)
+
+  call delete('Xmouseshapes')
+endfunc
+
 " vim: shiftwidth=2 sts=2 expandtab
index d380899c8ffc977f9d95683ca54977665fe88225..77e3eefafd323104c8e01b07c56f1bee539b27ab 100644 (file)
@@ -1163,13 +1163,24 @@ format_lines(
                State = MODE_INSERT;    // for open_line()
                smd_save = p_smd;
                p_smd = FALSE;
+
                insertchar(NUL, INSCHAR_FORMAT
                        + (do_comments ? INSCHAR_DO_COM : 0)
                        + (do_comments && do_comments_list
                                                       ? INSCHAR_COM_LIST : 0)
                        + (avoid_fex ? INSCHAR_NO_FEX : 0), second_indent);
+
                State = old_State;
                p_smd = smd_save;
+               // Cursor and mouse shape shapes may have been updated (e.g. by
+               // :normal) in insertchar(), so they need to be updated here.
+#ifdef CURSOR_SHAPE
+               ui_cursor_shape();
+#endif
+#ifdef FEAT_MOUSESHAPE
+               update_mouseshape(-1);
+#endif
+
                second_indent = -1;
                // at end of par.: need to set indent of next par.
                need_set_indent = is_end_par;
index bee9e95b85010a989278a07fdea9b47a2157edb6..6a5e976b00ff87ad99cc01845cf0be75e5ad2841 100644 (file)
@@ -704,6 +704,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    940,
 /**/
     939,
 /**/