mirror of
https://github.com/neovim/neovim.git
synced 2024-12-19 10:45:16 -07:00
vim-patch:9.1.0940: Wrong cursor shape with "gq" and 'indentexpr' executes :normal (#31616)
Problem: Wrong cursor shape with "gq" and 'indentexpr' executes :normal
Solution: Update cursor and mouse shape after restoring old_State.
(zeertzjq)
closes: vim/vim#16241
Solution: Update cursor and mouse shape after restoring old_State.
6c3027744e
This commit is contained in:
parent
51c380238c
commit
f7c42433c5
@ -35,6 +35,7 @@
|
|||||||
#include "nvim/strings.h"
|
#include "nvim/strings.h"
|
||||||
#include "nvim/textformat.h"
|
#include "nvim/textformat.h"
|
||||||
#include "nvim/textobject.h"
|
#include "nvim/textobject.h"
|
||||||
|
#include "nvim/ui.h"
|
||||||
#include "nvim/undo.h"
|
#include "nvim/undo.h"
|
||||||
#include "nvim/vim_defs.h"
|
#include "nvim/vim_defs.h"
|
||||||
#include "nvim/window.h"
|
#include "nvim/window.h"
|
||||||
@ -1049,12 +1050,18 @@ void format_lines(linenr_T line_count, bool avoid_fex)
|
|||||||
State = MODE_INSERT; // for open_line()
|
State = MODE_INSERT; // for open_line()
|
||||||
smd_save = p_smd;
|
smd_save = p_smd;
|
||||||
p_smd = false;
|
p_smd = false;
|
||||||
|
|
||||||
insertchar(NUL, INSCHAR_FORMAT
|
insertchar(NUL, INSCHAR_FORMAT
|
||||||
+ (do_comments ? INSCHAR_DO_COM : 0)
|
+ (do_comments ? INSCHAR_DO_COM : 0)
|
||||||
+ (do_comments && do_comments_list ? INSCHAR_COM_LIST : 0)
|
+ (do_comments && do_comments_list ? INSCHAR_COM_LIST : 0)
|
||||||
+ (avoid_fex ? INSCHAR_NO_FEX : 0), second_indent);
|
+ (avoid_fex ? INSCHAR_NO_FEX : 0), second_indent);
|
||||||
|
|
||||||
State = old_State;
|
State = old_State;
|
||||||
p_smd = smd_save;
|
p_smd = smd_save;
|
||||||
|
// Cursor shape may have been updated (e.g. by :normal) in insertchar(),
|
||||||
|
// so it needs to be updated here.
|
||||||
|
ui_cursor_shape();
|
||||||
|
|
||||||
second_indent = -1;
|
second_indent = -1;
|
||||||
// at end of par.: need to set indent of next par.
|
// at end of par.: need to set indent of next par.
|
||||||
need_set_indent = is_end_par;
|
need_set_indent = is_end_par;
|
||||||
|
@ -94,6 +94,46 @@ describe('ui mode_change event', function()
|
|||||||
}
|
}
|
||||||
end)
|
end)
|
||||||
|
|
||||||
|
-- oldtest: Test_indent_norm_with_gq()
|
||||||
|
it('is restored to Normal mode after "gq" indents using :normal #12309', function()
|
||||||
|
screen:try_resize(60, 6)
|
||||||
|
n.exec([[
|
||||||
|
func Indent()
|
||||||
|
exe "normal! \<Ignore>"
|
||||||
|
return 0
|
||||||
|
endfunc
|
||||||
|
|
||||||
|
setlocal indentexpr=Indent()
|
||||||
|
call setline(1, [repeat('a', 80), repeat('b', 80)])
|
||||||
|
]])
|
||||||
|
|
||||||
|
feed('ggVG')
|
||||||
|
screen:expect {
|
||||||
|
grid = [[
|
||||||
|
{17:aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa}|
|
||||||
|
{17:aaaaaaaaaaaaaaaaaaaa} |
|
||||||
|
^b{17:bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb}|
|
||||||
|
{17:bbbbbbbbbbbbbbbbbbbb} |
|
||||||
|
{1:~ }|
|
||||||
|
{5:-- VISUAL LINE --} |
|
||||||
|
]],
|
||||||
|
mode = 'visual',
|
||||||
|
}
|
||||||
|
|
||||||
|
feed('gq')
|
||||||
|
screen:expect {
|
||||||
|
grid = [[
|
||||||
|
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa|
|
||||||
|
aaaaaaaaaaaaaaaaaaaa |
|
||||||
|
^bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb|
|
||||||
|
bbbbbbbbbbbbbbbbbbbb |
|
||||||
|
{1:~ }|
|
||||||
|
|
|
||||||
|
]],
|
||||||
|
mode = 'normal',
|
||||||
|
}
|
||||||
|
end)
|
||||||
|
|
||||||
it('works in insert mode', function()
|
it('works in insert mode', function()
|
||||||
feed('i')
|
feed('i')
|
||||||
screen:expect {
|
screen:expect {
|
||||||
|
@ -1,5 +1,8 @@
|
|||||||
" Test for various indent options
|
" Test for various indent options
|
||||||
|
|
||||||
|
source shared.vim
|
||||||
|
source check.vim
|
||||||
|
|
||||||
func Test_preserveindent()
|
func Test_preserveindent()
|
||||||
new
|
new
|
||||||
" Test for autoindent copying indent from the previous line
|
" Test for autoindent copying indent from the previous line
|
||||||
@ -303,4 +306,50 @@ func Test_indent_overflow_count2()
|
|||||||
close!
|
close!
|
||||||
endfunc
|
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
|
" vim: shiftwidth=2 sts=2 expandtab
|
||||||
|
Loading…
Reference in New Issue
Block a user