mirror of
https://github.com/neovim/neovim.git
synced 2025-10-06 09:56:31 +00:00
vim-patch:9.0.2135: No test for mode() when executing Ex commands (#26282)
Problem: No test for mode() when executing Ex commands
Solution: Add some test cases and simplify several other test cases.
Also add a few more test cases for ModeChanged.
closes: vim/vim#13588
fcaeb3d42b
This commit is contained in:
4
runtime/doc/builtin.txt
generated
4
runtime/doc/builtin.txt
generated
@@ -4850,9 +4850,9 @@ mode([expr]) *mode()*
|
|||||||
Rvc Virtual Replace mode completion |compl-generic|
|
Rvc Virtual Replace mode completion |compl-generic|
|
||||||
Rvx Virtual Replace mode |i_CTRL-X| completion
|
Rvx Virtual Replace mode |i_CTRL-X| completion
|
||||||
c Command-line editing
|
c Command-line editing
|
||||||
cr Command-line while in overstrike mode |c_<Insert>|
|
cr Command-line editing overstrike mode |c_<Insert>|
|
||||||
cv Vim Ex mode |gQ|
|
cv Vim Ex mode |gQ|
|
||||||
cvr Vim Ex while in overstrike mode |c_<Insert>|
|
cvr Vim Ex mode while in overstrike mode |c_<Insert>|
|
||||||
r Hit-enter prompt
|
r Hit-enter prompt
|
||||||
rm The -- more -- prompt
|
rm The -- more -- prompt
|
||||||
r? A |:confirm| query of some sort
|
r? A |:confirm| query of some sort
|
||||||
|
4
runtime/lua/vim/_meta/vimfn.lua
generated
4
runtime/lua/vim/_meta/vimfn.lua
generated
@@ -5812,9 +5812,9 @@ function vim.fn.mkdir(name, flags, prot) end
|
|||||||
--- Rvc Virtual Replace mode completion |compl-generic|
|
--- Rvc Virtual Replace mode completion |compl-generic|
|
||||||
--- Rvx Virtual Replace mode |i_CTRL-X| completion
|
--- Rvx Virtual Replace mode |i_CTRL-X| completion
|
||||||
--- c Command-line editing
|
--- c Command-line editing
|
||||||
--- cr Command-line while in overstrike mode |c_<Insert>|
|
--- cr Command-line editing overstrike mode |c_<Insert>|
|
||||||
--- cv Vim Ex mode |gQ|
|
--- cv Vim Ex mode |gQ|
|
||||||
--- cvr Vim Ex while in overstrike mode |c_<Insert>|
|
--- cvr Vim Ex mode while in overstrike mode |c_<Insert>|
|
||||||
--- r Hit-enter prompt
|
--- r Hit-enter prompt
|
||||||
--- rm The -- more -- prompt
|
--- rm The -- more -- prompt
|
||||||
--- r? A |:confirm| query of some sort
|
--- r? A |:confirm| query of some sort
|
||||||
|
@@ -7038,9 +7038,9 @@ M.funcs = {
|
|||||||
Rvc Virtual Replace mode completion |compl-generic|
|
Rvc Virtual Replace mode completion |compl-generic|
|
||||||
Rvx Virtual Replace mode |i_CTRL-X| completion
|
Rvx Virtual Replace mode |i_CTRL-X| completion
|
||||||
c Command-line editing
|
c Command-line editing
|
||||||
cr Command-line while in overstrike mode |c_<Insert>|
|
cr Command-line editing overstrike mode |c_<Insert>|
|
||||||
cv Vim Ex mode |gQ|
|
cv Vim Ex mode |gQ|
|
||||||
cvr Vim Ex while in overstrike mode |c_<Insert>|
|
cvr Vim Ex mode while in overstrike mode |c_<Insert>|
|
||||||
r Hit-enter prompt
|
r Hit-enter prompt
|
||||||
rm The -- more -- prompt
|
rm The -- more -- prompt
|
||||||
r? A |:confirm| query of some sort
|
r? A |:confirm| query of some sort
|
||||||
|
@@ -3656,8 +3656,6 @@ func Test_mode_changes()
|
|||||||
call assert_equal(len(g:mode_seq) - 1, g:index)
|
call assert_equal(len(g:mode_seq) - 1, g:index)
|
||||||
call assert_equal(2, g:n_to_c)
|
call assert_equal(2, g:n_to_c)
|
||||||
call assert_equal(2, g:c_to_n)
|
call assert_equal(2, g:c_to_n)
|
||||||
unlet g:n_to_c
|
|
||||||
unlet g:c_to_n
|
|
||||||
|
|
||||||
let g:n_to_v = 0
|
let g:n_to_v = 0
|
||||||
au ModeChanged n:v let g:n_to_v += 1
|
au ModeChanged n:v let g:n_to_v += 1
|
||||||
@@ -3668,8 +3666,10 @@ func Test_mode_changes()
|
|||||||
call assert_equal(len(g:mode_seq) - 1, g:index)
|
call assert_equal(len(g:mode_seq) - 1, g:index)
|
||||||
call assert_equal(1, g:n_to_v)
|
call assert_equal(1, g:n_to_v)
|
||||||
call assert_equal(1, g:v_to_n)
|
call assert_equal(1, g:v_to_n)
|
||||||
unlet g:n_to_v
|
|
||||||
unlet g:v_to_n
|
let g:mode_seq += ['c', 'cr', 'c', 'cr', 'n']
|
||||||
|
call feedkeys(":\<Insert>\<Insert>\<Insert>\<CR>", 'tnix')
|
||||||
|
call assert_equal(len(g:mode_seq) - 1, g:index)
|
||||||
|
|
||||||
au! ModeChanged
|
au! ModeChanged
|
||||||
delfunc TestMode
|
delfunc TestMode
|
||||||
@@ -3684,6 +3684,10 @@ func Test_mode_changes()
|
|||||||
unlet! g:i_to_n
|
unlet! g:i_to_n
|
||||||
unlet! g:nori_to_any
|
unlet! g:nori_to_any
|
||||||
unlet! g:i_to_any
|
unlet! g:i_to_any
|
||||||
|
unlet! g:n_to_c
|
||||||
|
unlet! g:c_to_n
|
||||||
|
unlet! g:n_to_v
|
||||||
|
unlet! g:v_to_n
|
||||||
endfunc
|
endfunc
|
||||||
|
|
||||||
func Test_recursive_ModeChanged()
|
func Test_recursive_ModeChanged()
|
||||||
|
@@ -637,7 +637,7 @@ func Test_mode()
|
|||||||
" Only complete from the current buffer.
|
" Only complete from the current buffer.
|
||||||
set complete=.
|
set complete=.
|
||||||
|
|
||||||
inoremap <F2> <C-R>=Save_mode()<CR>
|
noremap! <F2> <C-R>=Save_mode()<CR>
|
||||||
xnoremap <F2> <Cmd>call Save_mode()<CR>
|
xnoremap <F2> <Cmd>call Save_mode()<CR>
|
||||||
|
|
||||||
normal! 3G
|
normal! 3G
|
||||||
@@ -796,17 +796,24 @@ func Test_mode()
|
|||||||
exe "normal g\<C-H>\<C-O>\<F2>\<Esc>"
|
exe "normal g\<C-H>\<C-O>\<F2>\<Esc>"
|
||||||
call assert_equal("\<C-V>-\<C-V>s", g:current_modes)
|
call assert_equal("\<C-V>-\<C-V>s", g:current_modes)
|
||||||
|
|
||||||
call feedkeys(":echo \<C-R>=Save_mode()\<C-U>\<CR>", 'xt')
|
call feedkeys(":\<F2>\<CR>", 'xt')
|
||||||
call assert_equal('c-c', g:current_modes)
|
call assert_equal('c-c', g:current_modes)
|
||||||
call feedkeys(":\<insert>\<C-r>=Save_mode()\<CR>",'xt')
|
call feedkeys(":\<Insert>\<F2>\<CR>", 'xt')
|
||||||
call assert_equal("c-cr", g:current_modes)
|
call assert_equal("c-cr", g:current_modes)
|
||||||
call feedkeys("gQecho \<C-R>=Save_mode()\<CR>\<CR>vi\<CR>", 'xt')
|
call feedkeys("gQ\<F2>vi\<CR>", 'xt')
|
||||||
call assert_equal('c-cv', g:current_modes)
|
call assert_equal('c-cv', g:current_modes)
|
||||||
call feedkeys("gQ\<insert>\<C-r>=Save_mode()\<CR>",'xt')
|
call feedkeys("gQ\<Insert>\<F2>vi\<CR>", 'xt')
|
||||||
call assert_equal("c-cvr", g:current_modes)
|
call assert_equal("c-cvr", g:current_modes)
|
||||||
|
|
||||||
|
" Executing commands in Vim Ex mode should return "cv", never "cvr",
|
||||||
|
" as Cmdline editing has already ended.
|
||||||
|
call feedkeys("gQcall Save_mode()\<CR>vi\<CR>", 'xt')
|
||||||
|
call assert_equal('c-cv', g:current_modes)
|
||||||
|
call feedkeys("gQ\<Insert>call Save_mode()\<CR>vi\<CR>", 'xt')
|
||||||
|
call assert_equal('c-cv', g:current_modes)
|
||||||
|
|
||||||
" call feedkeys("Qcall Save_mode()\<CR>vi\<CR>", 'xt')
|
" call feedkeys("Qcall Save_mode()\<CR>vi\<CR>", 'xt')
|
||||||
" call assert_equal('c-ce', g:current_modes)
|
" call assert_equal('c-ce', g:current_modes)
|
||||||
" How to test Ex mode?
|
|
||||||
|
|
||||||
" Test mode in operatorfunc (it used to be Operator-pending).
|
" Test mode in operatorfunc (it used to be Operator-pending).
|
||||||
set operatorfunc=OperatorFunc
|
set operatorfunc=OperatorFunc
|
||||||
@@ -821,14 +828,15 @@ func Test_mode()
|
|||||||
call assert_equal('n-niR', g:current_modes)
|
call assert_equal('n-niR', g:current_modes)
|
||||||
execute "normal! gR\<C-o>g@l\<Esc>"
|
execute "normal! gR\<C-o>g@l\<Esc>"
|
||||||
call assert_equal('n-niV', g:current_modes)
|
call assert_equal('n-niV', g:current_modes)
|
||||||
" Test statusline updates for overstike mode
|
|
||||||
|
" Test statusline updates for overstrike mode
|
||||||
if CanRunVimInTerminal()
|
if CanRunVimInTerminal()
|
||||||
let buf = RunVimInTerminal('', {'rows': 12})
|
let buf = RunVimInTerminal('', {'rows': 12})
|
||||||
call term_sendkeys(buf, ":set laststatus=2 statusline=%!mode(1)\<CR>")
|
call term_sendkeys(buf, ":set laststatus=2 statusline=%!mode(1)\<CR>")
|
||||||
call term_sendkeys(buf, ":")
|
call term_sendkeys(buf, ":")
|
||||||
call TermWait(buf)
|
call TermWait(buf)
|
||||||
call VerifyScreenDump(buf, 'Test_mode_1', {})
|
call VerifyScreenDump(buf, 'Test_mode_1', {})
|
||||||
call term_sendkeys(buf, "\<insert>")
|
call term_sendkeys(buf, "\<Insert>")
|
||||||
call TermWait(buf)
|
call TermWait(buf)
|
||||||
call VerifyScreenDump(buf, 'Test_mode_2', {})
|
call VerifyScreenDump(buf, 'Test_mode_2', {})
|
||||||
call StopVimInTerminal(buf)
|
call StopVimInTerminal(buf)
|
||||||
@@ -843,7 +851,7 @@ func Test_mode()
|
|||||||
endif
|
endif
|
||||||
|
|
||||||
bwipe!
|
bwipe!
|
||||||
iunmap <F2>
|
unmap! <F2>
|
||||||
xunmap <F2>
|
xunmap <F2>
|
||||||
set complete&
|
set complete&
|
||||||
set operatorfunc&
|
set operatorfunc&
|
||||||
|
Reference in New Issue
Block a user