comparison runtime/doc/eval.txt @ 10153:715d6c5707b8

commit https://github.com/vim/vim/commit/abd468ed0fbcba391e7833feeaa7de3ced841455 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Sep 8 22:22:43 2016 +0200 Updated runtime files
author Christian Brabandt <cb@256bit.org>
date Thu, 08 Sep 2016 22:30:08 +0200
parents b11ceef7116e
children 9f48eab77d62
comparison
equal deleted inserted replaced
10152:f0a07ec845cf 10153:715d6c5707b8
1 *eval.txt* For Vim version 7.4. Last change: 2016 Sep 05 1 *eval.txt* For Vim version 7.4. Last change: 2016 Sep 07
2 2
3 3
4 VIM REFERENCE MANUAL by Bram Moolenaar 4 VIM REFERENCE MANUAL by Bram Moolenaar
5 5
6 6
7791 is the timer ID. The callback is only invoked when Vim is 7791 is the timer ID. The callback is only invoked when Vim is
7792 waiting for input. 7792 waiting for input.
7793 7793
7794 {options} is a dictionary. Supported entries: 7794 {options} is a dictionary. Supported entries:
7795 "repeat" Number of times to repeat calling the 7795 "repeat" Number of times to repeat calling the
7796 callback. -1 means forever. 7796 callback. -1 means forever. When not present
7797 the callback will be called once.
7797 7798
7798 Example: > 7799 Example: >
7799 func MyHandler(timer) 7800 func MyHandler(timer)
7800 echo 'Handler called' 7801 echo 'Handler called'
7801 endfunc 7802 endfunc