Searched refs:waittime (Results 1 – 13 of 13) sorted by relevance
| /vim-8.2.3635/src/ |
| H A D | channel.c | 721 int *waittime) in channel_connect() argument 744 if (*waittime >= 0) in channel_connect() 794 waitnow = *waittime > 50 ? 50 : *waittime; in channel_connect() 838 if (*waittime > 1 && elapsed_msec < *waittime) in channel_connect() 889 if (*waittime > 1 && elapsed_msec < *waittime) in channel_connect() 905 if (*waittime <= 0) in channel_connect() 907 *waittime = 1; in channel_connect() 944 int waittime, in channel_open() argument 1033 if (waittime == 0) in channel_open() 1034 waittime = 1; in channel_open() [all …]
|
| H A D | gui_x11.c | 3015 gui_mch_set_blinking(long waittime, long on, long off) in gui_mch_set_blinking() argument 3017 blink_waittime = waittime; in gui_mch_set_blinking()
|
| H A D | gui_haiku.cc | 3744 long waittime, in gui_mch_set_blinking() argument 3749 blink_waittime = waittime; in gui_mch_set_blinking()
|
| H A D | gui_gtk_x11.c | 789 gui_mch_set_blinking(long waittime, long on, long off) in gui_mch_set_blinking() argument 791 blink_waittime = waittime; in gui_mch_set_blinking()
|
| /vim-8.2.3635/src/testdir/ |
| H A D | test_terminal.vim | 546 let waittime = 900 549 let waittime = 2000 556 return [cmd, waittime] 562 let [cmd, waittime] = s:get_sleep_cmd() 571 call WaitForAssert({-> assert_equal(1, winnr('$'))}, waittime) 587 call WaitForAssert({-> assert_equal(1, winnr('$'))}, waittime) 592 call WaitForAssert({-> assert_equal(1, winnr('$'))}, waittime) 597 call WaitForAssert({-> assert_equal(2, winnr('$'))}, waittime) 602 call WaitForAssert({-> assert_equal(2, winnr('$'))}, waittime) 607 call WaitForAssert({-> assert_equal(2, winnr('$'))}, waittime) [all …]
|
| H A D | test_channel.vim | 178 call assert_fails("call ch_setoptions(handle, {'waittime': 111})", 'E475:') 487 let handle = ch_open('localhost:9867', {'waittime': 500}) 1476 let s:chopt.waittime = 1000
|
| /vim-8.2.3635/src/proto/ |
| H A D | channel.pro | 12 channel_T *channel_open(const char *hostname, int port, int waittime, void (*nb_close_cb)(void));
|
| H A D | gui_x11.pro | 59 void gui_mch_set_blinking(long waittime, long on, long off);
|
| H A D | gui_gtk_x11.pro | 6 void gui_mch_set_blinking(long waittime, long on, long off);
|
| H A D | gui_haiku.pro | 41 void gui_mch_set_blinking(long waittime, long on, long off);
|
| /vim-8.2.3635/runtime/doc/ |
| H A D | channel.txt | 176 *waittime* 177 "waittime" The time to wait for the connection to be made in 194 arguments are similar to what is passed to |ch_open()|, but "waittime" cannot 225 ch_open() fails quickly. On MS-Windows "waittime" applies. 706 "waittime" only applies to |ch_open()| 840 let channel = ch_open(address, {"waittime": 0}) 843 let channel = ch_open(address, {"waittime": 1000}) 846 Note that the waittime for ch_open() gives the job one second to make the port
|
| H A D | tags | 10356 waittime channel.txt /*waittime*
|
| H A D | version8.txt | 8196 Solution: Adjust the test for MS-Windows using "waittime". 8239 Solution: Use a small waittime to make ch_open() work. (Ozaki Kiichi) 8501 Problem: On Mac OS/X the waittime must be > 0 for connect to work. 8503 Always use a waittime of 1 or more. 8605 Solution: Use the 1 msec waittime for all systems.
|