We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d28e0b3 commit 95ffd43Copy full SHA for 95ffd43
2 files changed
src/testdir/test_terminal.vim
@@ -781,7 +781,8 @@ func Test_terminal_special_chars()
781
call writefile(['x'], 'Xdir with spaces/quoted"file')
782
term ls Xdir\ with\ spaces/quoted\"file
783
call WaitForAssert({-> assert_match('quoted"file', term_getline('', 1))})
784
- call term_wait('')
+ " make sure the job has finished
785
+ call WaitForAssert({-> assert_match('finish', term_getstatus(bufnr()))})
786
787
call delete('Xdir with spaces', 'rf')
788
bwipe
src/version.c
@@ -738,6 +738,8 @@ static char *(features[]) =
738
739
static int included_patches[] =
740
{ /* Add new patch number below this line */
741
+/**/
742
+ 304,
743
/**/
744
303,
745
0 commit comments