Lines Matching refs:This
38 " 1 line: "This is the start"
39 " 3001 lines: "This is the leader"
40 " 1 line: "This is the middle"
41 " 3001 lines: "This is the trailer"
42 " 1 line: "This is the end"
43 call append(0, "This is the start")
44 call append(1, repeat(["This is the leader"], 3001))
45 call append(3002, "This is the middle")
46 call append(3003, repeat(["This is the trailer"], 3001))
47 call append(6004, "This is the end")
53 call assert_equal("This is the start", getline(1))
54 call assert_equal("This is the middle", getline(3003))
55 call assert_equal("This is the end", getline(6005))