comparison runtime/doc/version8.txt @ 23047:29c5f168c6fd

Update runtime files Commit: https://github.com/vim/vim/commit/23515b4ef7580af8b9d3b964a558ab2007cacda5 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Nov 29 14:36:24 2020 +0100 Update runtime files
author Bram Moolenaar <Bram@vim.org>
date Sun, 29 Nov 2020 14:45:04 +0100
parents e7c125224b1a
children 15fa3923cc49
comparison
equal deleted inserted replaced
23046:9a30b28b8154 23047:29c5f168c6fd
74 Timers ~ 74 Timers ~
75 75
76 Also asynchronous are timers. They can fire once or repeatedly and invoke a 76 Also asynchronous are timers. They can fire once or repeatedly and invoke a
77 function to do any work. For example: > 77 function to do any work. For example: >
78 let tempTimer = timer_start(4000, 'CheckTemp') 78 let tempTimer = timer_start(4000, 'CheckTemp')
79 This will call the CheckTemp() function four seconds (4000 milli seconds) 79 This will call the CheckTemp() function four seconds (4000 milliseconds)
80 later. See |timer_start()|. 80 later. See |timer_start()|.
81 81
82 82
83 Partials ~ 83 Partials ~
84 84