comparison src/proto/tag.pro @ 26388:8aba638e91eb v8.2.3725

patch 8.2.3725: cannot use a lambda for 'completefunc' and 'omnifunc' Commit: https://github.com/vim/vim/commit/8658c759f05b317707d56e3b65a5ef63930c7498 Author: Yegappan Lakshmanan <yegappan@yahoo.com> Date: Fri Dec 3 11:09:29 2021 +0000 patch 8.2.3725: cannot use a lambda for 'completefunc' and 'omnifunc' Problem: Cannot use a lambda for 'completefunc' and 'omnifunc'. Solution: Implement lambda support. (Yegappan Lakshmanan, closes https://github.com/vim/vim/issues/9257)
author Bram Moolenaar <Bram@vim.org>
date Fri, 03 Dec 2021 12:15:04 +0100
parents 3aa48d4e3dc8
children 13ba00ef7687
comparison
equal deleted inserted replaced
26387:b6eb7e295973 26388:8aba638e91eb
1 /* tag.c */ 1 /* tag.c */
2 int set_tagfunc_option(void); 2 int set_tagfunc_option(void);
3 void free_tagfunc_option(void); 3 void free_tagfunc_option(void);
4 void buf_set_tfu_callback(buf_T *buf); 4 void set_buflocal_tfu_callback(buf_T *buf);
5 int do_tag(char_u *tag, int type, int count, int forceit, int verbose); 5 int do_tag(char_u *tag, int type, int count, int forceit, int verbose);
6 void tag_freematch(void); 6 void tag_freematch(void);
7 void do_tags(exarg_T *eap); 7 void do_tags(exarg_T *eap);
8 int find_tags(char_u *pat, int *num_matches, char_u ***matchesp, int flags, int mincount, char_u *buf_ffname); 8 int find_tags(char_u *pat, int *num_matches, char_u ***matchesp, int flags, int mincount, char_u *buf_ffname);
9 void free_tag_stuff(void); 9 void free_tag_stuff(void);