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 8c94a54 commit ac3e830Copy full SHA for ac3e830
src/testdir/test_terminal.vim
@@ -283,8 +283,7 @@ func Test_terminal_scrollback()
283
let rows = term_getsize(buf)[0]
284
call WaitFor({-> term_getline(buf, rows - 1) =~ '149'})
285
let lines = line('$')
286
- call assert_true(lines <= 100)
287
- call assert_true(lines > 90)
+ call assert_inrange(91, 100, lines)
288
289
call Stop_shell_in_terminal(buf)
290
call term_wait(buf)
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
+ 1716,
767
/**/
768
1715,
769
0 commit comments