Lines Matching refs:name
51 let name = 'XVIMCLIPBOARD'
55 call remote_send(name, ":qa!\<CR>")
58 call WaitForAssert({-> assert_notmatch(name, serverlist())})
60 let cmd .= ' --servername ' . name
65 call WaitForAssert({-> assert_match(name, serverlist())})
69 call WaitForAssert({-> assert_notequal('', remote_expr(name, "v:version", "", 2))})
74 call remote_foreground(name)
75 call WaitForAssert({-> assert_equal("no", remote_expr(name, "@*", "", 1))})
78 call remote_send(name, ":let @* = 'yes'\<CR>")
79 call WaitForAssert({-> assert_equal("yes", remote_expr(name, "@*", "", 1))})
88 call WaitFor('remote_expr("' . name . '", "len(@*) >= ' . length . '", "", 1)')
89 let res = remote_expr(name, "@*", "", 2)
103 call remote_send(name, ":call test_ignore_error('E285') | gui -f\<CR>")
105 call remote_send(name, ":gui -f\<CR>")
112 … call WaitForAssert({-> assert_match("1", remote_expr(name, "has('gui_running')", "", 1))}, 10000)
114 call remote_send(name, ":let @* = 'maybe'\<CR>")
115 call WaitForAssert({-> assert_equal("maybe", remote_expr(name, "@*", "", 2))})
120 call remote_send(name, ":qa!\<CR>")