Lines Matching refs:buf
28 let buf = RunVimInTerminal('-S XTest_conceal', {})
29 call VerifyScreenDump(buf, 'Test_conceal_two_windows_01', {})
32 call term_sendkeys(buf, "k")
33 call VerifyScreenDump(buf, 'Test_conceal_two_windows_02', {})
36 call term_sendkeys(buf, "j")
37 call term_sendkeys(buf, ":set concealcursor=\r")
38 call VerifyScreenDump(buf, 'Test_conceal_two_windows_03', {})
41 call term_sendkeys(buf, "j")
42 call VerifyScreenDump(buf, 'Test_conceal_two_windows_04', {})
45 call term_sendkeys(buf, "\<C-W>\<C-W>")
46 call VerifyScreenDump(buf, 'Test_conceal_two_windows_05', {})
49 call term_sendkeys(buf, ":set concealcursor=n\r")
50 call VerifyScreenDump(buf, 'Test_conceal_two_windows_06n', {})
51 call term_sendkeys(buf, "a")
52 call VerifyScreenDump(buf, 'Test_conceal_two_windows_06i', {})
53 call term_sendkeys(buf, "\<Esc>/e")
54 call VerifyScreenDump(buf, 'Test_conceal_two_windows_06c', {})
55 call term_sendkeys(buf, "\<Esc>v")
56 call VerifyScreenDump(buf, 'Test_conceal_two_windows_06v', {})
57 call term_sendkeys(buf, "\<Esc>")
60 call term_sendkeys(buf, ":set concealcursor=i\r")
61 call VerifyScreenDump(buf, 'Test_conceal_two_windows_07n', {})
62 call term_sendkeys(buf, "14|a")
63 call VerifyScreenDump(buf, 'Test_conceal_two_windows_07i', {})
64 call term_sendkeys(buf, "\<Esc>")
65 call VerifyScreenDump(buf, 'Test_conceal_two_windows_07in', {})
66 call term_sendkeys(buf, "/e")
67 call VerifyScreenDump(buf, 'Test_conceal_two_windows_07c', {})
68 call term_sendkeys(buf, "\<Esc>v")
69 call VerifyScreenDump(buf, 'Test_conceal_two_windows_07v', {})
70 call term_sendkeys(buf, "\<Esc>")
73 call term_sendkeys(buf, ":set concealcursor=c\r")
74 call VerifyScreenDump(buf, 'Test_conceal_two_windows_08n', {})
75 call term_sendkeys(buf, "a")
76 call VerifyScreenDump(buf, 'Test_conceal_two_windows_08i', {})
77 call term_sendkeys(buf, "\<Esc>/e")
78 call VerifyScreenDump(buf, 'Test_conceal_two_windows_08c', {})
79 call term_sendkeys(buf, "\<Esc>v")
80 call VerifyScreenDump(buf, 'Test_conceal_two_windows_08v', {})
81 call term_sendkeys(buf, "\<Esc>")
84 call term_sendkeys(buf, ":set concealcursor=v\r")
85 call VerifyScreenDump(buf, 'Test_conceal_two_windows_09n', {})
86 call term_sendkeys(buf, "a")
87 call VerifyScreenDump(buf, 'Test_conceal_two_windows_09i', {})
88 call term_sendkeys(buf, "\<Esc>/e")
89 call VerifyScreenDump(buf, 'Test_conceal_two_windows_09c', {})
90 call term_sendkeys(buf, "\<Esc>v")
91 call VerifyScreenDump(buf, 'Test_conceal_two_windows_09v', {})
92 call term_sendkeys(buf, "\<Esc>")
95 call term_sendkeys(buf, ":set concealcursor=\r")
96 call term_sendkeys(buf, "a")
97 call VerifyScreenDump(buf, 'Test_conceal_two_windows_10', {})
98 call term_sendkeys(buf, "\<Down>")
99 call VerifyScreenDump(buf, 'Test_conceal_two_windows_11', {})
100 call term_sendkeys(buf, "\<Esc>")
103 call VerifyScreenDump(buf, 'Test_conceal_two_windows_12', {})
104 call term_sendkeys(buf, "o")
105 call VerifyScreenDump(buf, 'Test_conceal_two_windows_13', {})
106 call term_sendkeys(buf, "\<Esc>")
109 call StopVimInTerminal(buf)
126 let buf = RunVimInTerminal('-S XTest_conceal_cul', {})
127 call VerifyScreenDump(buf, 'Test_conceal_cul_01', {})
129 call term_sendkeys(buf, ":wincmd w\r")
130 call VerifyScreenDump(buf, 'Test_conceal_cul_02', {})
132 call term_sendkeys(buf, "k")
133 call VerifyScreenDump(buf, 'Test_conceal_cul_03', {})
136 call StopVimInTerminal(buf)
148 let buf = RunVimInTerminal('-S XTest_conceal_resize', {'rows': 6})
149 call VerifyScreenDump(buf, 'Test_conceal_resize_01', {})
151 call win_execute(buf->win_findbuf()[0], 'wincmd +')
152 call TermWait(buf)
153 call VerifyScreenDump(buf, 'Test_conceal_resize_02', {})
156 call StopVimInTerminal(buf)