comparison src/proto/ex_docmd.pro @ 14428:aab5947be7c5 v8.1.0228

patch 8.1.0228: dropping files is ignored while Vim is busy commit https://github.com/vim/vim/commit/92d147be959e689f8f58fd5d138a31835e160289 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Jul 29 17:35:23 2018 +0200 patch 8.1.0228: dropping files is ignored while Vim is busy Problem: Dropping files is ignored while Vim is busy. Solution: Postpone the effect of dropping files until it's safe.
author Christian Brabandt <cb@256bit.org>
date Sun, 29 Jul 2018 17:45:05 +0200
parents 4b35f2835ce4
children 3f1a17863b73
comparison
equal deleted inserted replaced
14427:a6055273c735 14428:aab5947be7c5
29 int cmdcomplete_str_to_type(char_u *complete_str); 29 int cmdcomplete_str_to_type(char_u *complete_str);
30 void not_exiting(void); 30 void not_exiting(void);
31 void tabpage_close(int forceit); 31 void tabpage_close(int forceit);
32 void tabpage_close_other(tabpage_T *tp, int forceit); 32 void tabpage_close_other(tabpage_T *tp, int forceit);
33 void ex_all(exarg_T *eap); 33 void ex_all(exarg_T *eap);
34 void handle_drop(int filec, char_u **filev, int split); 34 void handle_drop(int filec, char_u **filev, int split, void (*callback)(void *), void *cookie);
35 void handle_any_postponed_drop(void);
35 void alist_clear(alist_T *al); 36 void alist_clear(alist_T *al);
36 void alist_init(alist_T *al); 37 void alist_init(alist_T *al);
37 void alist_unlink(alist_T *al); 38 void alist_unlink(alist_T *al);
38 void alist_new(void); 39 void alist_new(void);
39 void alist_expand(int *fnum_list, int fnum_len); 40 void alist_expand(int *fnum_list, int fnum_len);