Lines Matching refs:timer

10 func MyHandler(timer)  argument
14 func MyHandlerWithLists(lists, timer) argument
21 let timer = timer_start(50, 'MyHandler')
40 let timer = timer_start(50, 'MyHandler', {'repeat': 3})
58 let timer = timer_start(50, 'MyHandler', {'repeat': -1})
60 call timer_stop(timer)
167 func StopMyself(timer) argument
170 call timer_stop(a:timer)
182 func StopTimer1(timer) argument
189 func StopTimer2(timer) argument
209 func StopTimerAll(timer) argument
229 func FeedkeysCb(timer) argument
233 func InputCb(timer) argument
246 func FuncWithError(timer) argument
256 let timer = timer_start(10, 'FuncWithError', {'repeat': -1})
267 func FuncWithCaughtError(timer) argument
278 let timer = timer_start(10, 'FuncWithCaughtError', {'repeat': 4})
285 func FeedAndPeek(timer) argument
290 func Interrupt(timer) argument
328 let timer = timer_start(40, function('g:Foo'), {'repeat':-1})
331 call timer_stop(timer)
336 " Check that v:count is saved and restored, not changed by a timer.
351 " Wait for the timer to move the cursor to the third line.
363 " Test that the garbage collector isn't triggered if a timer callback invokes
366 " 'uptimetime. must be bigger than the timer timeout
393 func Func(timer) argument
406 " GC must not run during timer callback, which can make Vim crash.
422 " Test for garbage collection when a timer is still running
424 let timer = timer_start(1000, function('MyHandler'), {'repeat' : 10})
426 let l = timer_info(timer)
428 call timer_stop(timer)
439 " The typing "G" triggers the timer, which changes the function table.