diff options
author | zeertzjq <zeertzjq@outlook.com> | 2023-08-21 16:08:48 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-21 16:08:48 +0800 |
commit | dc01d68f27a0d80da62bac690e9ca4647bc70dd9 (patch) | |
tree | be513a60ebce56c3d8bbb50f451029a4bba980f7 /test/old/testdir/test_debugger.vim | |
parent | cc35352f65f823259675f84a915ee03d2423913e (diff) | |
parent | 02ca31979bed2b7e432401b23aaf7987a3f0badb (diff) | |
download | rneovim-dc01d68f27a0d80da62bac690e9ca4647bc70dd9.tar.gz rneovim-dc01d68f27a0d80da62bac690e9ca4647bc70dd9.tar.bz2 rneovim-dc01d68f27a0d80da62bac690e9ca4647bc70dd9.zip |
Merge pull request #24818 from zeertzjq/vim-8.2.0186
vim-patch:8.1.2403,8.2.{0186,0195,0310,0454,0533,2908,2910,3518,4339}
Diffstat (limited to 'test/old/testdir/test_debugger.vim')
-rw-r--r-- | test/old/testdir/test_debugger.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/old/testdir/test_debugger.vim b/test/old/testdir/test_debugger.vim index 18616e8717..ba3f4715ca 100644 --- a/test/old/testdir/test_debugger.vim +++ b/test/old/testdir/test_debugger.vim @@ -36,7 +36,7 @@ endfunc " If the expected output argument is supplied, then check for it. func RunDbgCmd(buf, cmd, ...) call term_sendkeys(a:buf, a:cmd . "\r") - call term_wait(a:buf, 20) + call TermWait(a:buf) if a:0 != 0 let options = #{match: 'equal'} |