Lines Matching refs:hello

85   call assert_equal('got it', ch_evalexpr(handle, 'hello!'))
105 call ch_sendexpr(handle, 'echo hello ' . i)
107 call assert_equal('hello 0', ch_read(handle)[1])
108 call assert_equal('hello 1', ch_read(handle)[1])
109 call assert_equal('hello 2', ch_read(handle)[1])
138 call ch_sendexpr(handle, 'hello!', {'callback': 'Ch_requestHandler'})
149 call ch_sendexpr(handle, 'hello!', {'callback': function('Ch_requestHandler')})
161 call ch_sendexpr(handle, 'hello!', {'callback': {a, b -> Ch_requestHandler(a, b)}})
268 call assert_equal('got it', ch_evalexpr(handle, 'hello!'))
275 call assert_equal('got it', ch_evalexpr(newhandle, 'hello!'))
276 call assert_equal('got it', ch_evalexpr(handle, 'hello!'))
279 call assert_equal('got it', ch_evalexpr(newhandle, 'hello!'))
377 call assert_equal('got it', ch_evalexpr(handle, 'hello!'))
447 call ch_sendraw(handle, "[1, \"hello!\"]\n", {'callback': 'Ch_handleRaw1'})
1015 call ch_sendraw(handle, "echo [0, \"hello\"]\n")
1019 …call assert_equal(['Reading from channel output...', '[0,"hello"]', '[-2,12.34]'], getline(1, '$'))
1049 exe "normal Gaecho hello\<CR>"
1051 call s:wait_for_last_line('hello', 0)
1052 call assert_equal('hello', getline('$'))
1080 exe "normal Goecho hello\<CR>"
1081 call s:wait_for_last_line('hello', 1)
1082 call assert_equal('hello', getline(line('$') - 1))
1233 call ch_sendraw(job, "echo [0, \"hello\"]\n")
1235 call WaitForAssert({-> assert_equal("dict: hello", g:Ch_outmsg)})
1329 call ch_sendraw(job, "echo [0, \"hello\"]\n")
1331 call WaitForAssert({-> assert_equal("lambda: hello", g:Ch_outmsg)})
1482 call assert_equal('got it', channel->ch_evalexpr('hello!'))
1767 let job = job_start('echo hello', {'out_io': 'buffer', 'out_name': 'test_buffer', 'out_msg': 0})
1769 call WaitForAssert({-> assert_equal(['hello'], getbufline(bufnr, 1, '$'))})
1776 let job = job_start('echo hello', {'out_io': 'buffer', 'out_name': 'test_buffer', 'out_msg': 0})
1777 call WaitForAssert({-> assert_equal(['hello'], getbufline(bufnr, 1, '$'))})
1959 call s:test_list_args('import sys;sys.stdout.write("hello world")', "hello world", 0)
1960 call s:test_list_args('import sys;sys.stdout.write("hello\nworld")', "hello\nworld", 0)
1961 call s:test_list_args('import sys;sys.stdout.write(''hello\nworld'')', "hello\nworld", 0)
1962 call s:test_list_args('import sys;sys.stdout.write(''hello"world'')', "hello\"world", 0)
1963 call s:test_list_args('import sys;sys.stdout.write(''hello^world'')', "hello^world", 0)
1964 call s:test_list_args('import sys;sys.stdout.write("hello&&world")', "hello&&world", 0)
1965 call s:test_list_args('import sys;sys.stdout.write(''hello\\world'')', "hello\\world", 0)
1966 call s:test_list_args('import sys;sys.stdout.write(''hello\\\\world'')', "hello\\\\world", 0)
1967 call s:test_list_args('import sys;sys.stdout.write("hello\"world\"")', 'hello"world"', 0)
1971 call s:test_list_args('import sys;sys.stdout.write("hello\tworld")', "hello\tworld", 0)
1974 call s:test_list_args('print("hello\nworld")', "hello\nworld", 1)
1975 call s:test_list_args('print(''hello\nworld'')', "hello\nworld", 1)
1976 call s:test_list_args('print(''hello"world'')', "hello\"world", 1)
1977 call s:test_list_args('print(''hello^world'')', "hello^world", 1)
1978 call s:test_list_args('print("hello&&world")', "hello&&world", 1)
1979 call s:test_list_args('print(''hello\\world'')', "hello\\world", 1)
1980 call s:test_list_args('print(''hello\\\\world'')', "hello\\\\world", 1)
1981 call s:test_list_args('print("hello\"world\"")', 'hello"world"', 1)
1982 call s:test_list_args('print("hello\tworld")', "hello\tworld", 1)
2190 call ch_log('hello there')
2194 call assert_match("hello there", text[1])