0
0
mirror of https://github.com/vim/vim.git synced 2025-10-14 07:04:10 -04:00

patch 8.2.0363: some Normal mode commands not tested

Problem:    Some Normal mode commands not tested.
Solution:   Add more tests. (Yegappan Lakshmanan, closes #5746)
This commit is contained in:
Bram Moolenaar
2020-03-08 05:13:15 +01:00
parent d0d440f702
commit f5f1e10d0d
9 changed files with 296 additions and 25 deletions

View File

@@ -124,3 +124,15 @@ func Test_prompt_garbage_collect()
delfunc MyPromptCallback
bwipe!
endfunc
" Test for editing the prompt buffer
func Test_prompt_buffer_edit()
new
set buftype=prompt
normal! i
call assert_beeps('normal! dd')
call assert_beeps('normal! ~')
close!
endfunc
" vim: shiftwidth=2 sts=2 expandtab