mirror of
https://github.com/neovim/neovim.git
synced 2026-08-03 22:28:43 +00:00
vim-patch:8.2.4672: using :normal with Ex mode may make :substitute hang (#17983)
Problem: Using :normal with Ex mode may make :substitute hang.
Solution: When getting an empty line behave like 'q' was typed.
(closes vim/vim#10070)
ce416b453a
Cherry-pick a comment from patch 8.2.0363.
This commit is contained in:
@@ -1843,6 +1843,16 @@ fun! Test_normal33_g_cmd2()
|
||||
bw!
|
||||
endfunc
|
||||
|
||||
func Test_normal_ex_substitute()
|
||||
" This was hanging on the substitute prompt.
|
||||
new
|
||||
call setline(1, 'a')
|
||||
exe "normal! gggQs/a/b/c\<CR>"
|
||||
call assert_equal('a', getline(1))
|
||||
bwipe!
|
||||
endfunc
|
||||
|
||||
" Test for g CTRL-G
|
||||
func Test_g_ctrl_g()
|
||||
new
|
||||
|
||||
|
||||
Reference in New Issue
Block a user