diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-08-07 18:22:53 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-08-07 18:22:53 +0200 |
commit | b73598e2f022a22fec512ea681c70d2775e8fd87 (patch) | |
tree | c233c50104f05d5e4830d56f7f04ce7d6f1e2fad /src/proto/ex_cmds2.pro | |
parent | e4a76ad0e74a31bbd9f1b1ac5b816d714d19a412 (diff) | |
download | vim-git-b73598e2f022a22fec512ea681c70d2775e8fd87.tar.gz |
patch 7.4.2180v7.4.2180
Problem: There is no easy way to stop all timers. There is no way to
temporary pause a timer.
Solution: Add timer_stopall() and timer_pause().
Diffstat (limited to 'src/proto/ex_cmds2.pro')
-rw-r--r-- | src/proto/ex_cmds2.pro | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/proto/ex_cmds2.pro b/src/proto/ex_cmds2.pro index 977f5c0de..f241d377e 100644 --- a/src/proto/ex_cmds2.pro +++ b/src/proto/ex_cmds2.pro @@ -22,6 +22,7 @@ timer_T *create_timer(long msec, int repeat); long check_due_timer(void); timer_T *find_timer(int id); void stop_timer(timer_T *timer); +void stop_all_timers(void); void add_timer_info(typval_T *rettv, timer_T *timer); void add_timer_info_all(typval_T *rettv); int set_ref_in_timer(int copyID); |