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 c2ce52c commit 9c84484Copy full SHA for 9c84484
2 files changed
src/testdir/test_terminal.vim
@@ -25,7 +25,7 @@ func Test_terminal_basic()
25
endfunc
26
27
func Check_123(buf)
28
- let l = term_scrape(a:buf, 0)
+ let l = term_scrape(a:buf, 1)
29
call assert_true(len(l) > 0)
30
call assert_equal('1', l[0].chars)
31
call assert_equal('2', l[1].chars)
@@ -37,7 +37,7 @@ func Check_123(buf)
37
call assert_equal('#000000', l[0].bg)
38
endif
39
40
- let l = term_getline(a:buf, 0)
+ let l = term_getline(a:buf, 1)
41
call assert_equal('123', l)
42
43
src/version.c
@@ -769,6 +769,8 @@ static char *(features[]) =
769
770
static int included_patches[] =
771
{ /* Add new patch number below this line */
772
+/**/
773
+ 833,
774
/**/
775
832,
776
0 commit comments