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 3cba734 commit 6c67219Copy full SHA for 6c67219
src/testdir/test_terminal.vim
@@ -281,7 +281,8 @@ func Test_terminal_scrollback()
281
call term_sendkeys(buf, "cat Xtext\<CR>")
282
endif
283
let rows = term_getsize(buf)[0]
284
- call WaitFor({-> term_getline(buf, rows - 1) =~ '149'})
+ " On MS-Windows there is an empty line, check both last line and above it.
285
+ call WaitFor({-> term_getline(buf, rows - 1) . term_getline(buf, rows - 2) =~ '149'})
286
let lines = line('$')
287
call assert_inrange(91, 100, lines)
288
src/version.c
@@ -762,6 +762,8 @@ static char *(features[]) =
762
763
static int included_patches[] =
764
{ /* Add new patch number below this line */
765
+/**/
766
+ 1718,
767
/**/
768
1717,
769
0 commit comments