mirror of
https://github.com/neovim/neovim.git
synced 2026-08-27 01:21:48 +00:00
vim-patch:9.1.1351: Return value of getcmdline() inconsistent in CmdlineLeavePre
Problem: Return value of getcmdline() inconsistent in CmdlineLeavePre
when leaving cmdline in different ways (after v9.1.1329).
Solution: Trigger CmdlineLeavePre before calling abandon_cmdline() so
that getcmdline() can return the command line (zeertzjq).
closes: vim/vim#17218
9240369774
This commit is contained in:
@@ -1987,11 +1987,28 @@ func Test_Cmdline_Trigger()
|
||||
call assert_equal('CmdlineLeavePre', g:log)
|
||||
call assert_equal('CmdlineLeave', g:log2)
|
||||
|
||||
let g:count = 0
|
||||
autocmd CmdlineLeavePre * let g:count += 1
|
||||
call feedkeys(":let c = input('? ')\<cr>B\<cr>", "tx")
|
||||
call assert_equal(2, g:count)
|
||||
unlet! g:count
|
||||
autocmd CmdlineLeavePre * let g:cmdline += [getcmdline()]
|
||||
|
||||
for end_keys in ["\<CR>", "\<NL>", "\<kEnter>", "\<C-C>", "\<Esc>",
|
||||
\ "\<C-\>\<C-N>", "\<C-\>\<C-G>"]
|
||||
let g:cmdline = []
|
||||
let g:log = ''
|
||||
let g:log2 = ''
|
||||
call assert_equal('', g:log)
|
||||
let keys = $':echo "hello"{end_keys}'
|
||||
let msg = keytrans(keys)
|
||||
call feedkeys(keys, "tx")
|
||||
call assert_equal(['echo "hello"'], g:cmdline, msg)
|
||||
call assert_equal('CmdlineLeavePre', g:log, msg)
|
||||
call assert_equal('CmdlineLeave', g:log2, msg)
|
||||
endfor
|
||||
|
||||
let g:cmdline = []
|
||||
call feedkeys(":let c = input('? ')\<cr>ABCDE\<cr>", "tx")
|
||||
call assert_equal(["let c = input('? ')", 'ABCDE'], g:cmdline)
|
||||
|
||||
au! CmdlineLeavePre
|
||||
unlet! g:cmdline
|
||||
unlet! g:log
|
||||
unlet! g:log2
|
||||
bw!
|
||||
|
||||
Reference in New Issue
Block a user