diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-03-15 23:10:59 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-03-15 23:10:59 +0100 |
commit | 975b5271eed4fa0500c24a8f37be0b1797cb9db7 (patch) | |
tree | e2f73f9ae91f1fce55de8757dc1599fcc169c3fe /src/proto/eval.pro | |
parent | ab1fa3955f25dfdb7e329c3bd76e175c93c8cb5e (diff) | |
download | vim-975b5271eed4fa0500c24a8f37be0b1797cb9db7.zip |
patch 7.4.1578
Problem: There is no way to invoke a function later or periodically.
Solution: Add timer support.
Diffstat (limited to 'src/proto/eval.pro')
-rw-r--r-- | src/proto/eval.pro | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/proto/eval.pro b/src/proto/eval.pro index dee95c4ed..1de7a6d9d 100644 --- a/src/proto/eval.pro +++ b/src/proto/eval.pro @@ -91,6 +91,7 @@ void partial_unref(partial_T *pt); void mzscheme_call_vim(char_u *name, typval_T *args, typval_T *rettv); float_T vim_round(float_T f); long do_searchpair(char_u *spat, char_u *mpat, char_u *epat, int dir, char_u *skip, int flags, pos_T *match_pos, linenr_T lnum_stop, long time_limit); +char_u *get_callback(typval_T *arg, partial_T **pp); void set_vim_var_nr(int idx, long val); long get_vim_var_nr(int idx); char_u *get_vim_var_str(int idx); |