comparison src/proto/tag.pro @ 26268:3aa48d4e3dc8 v8.2.3665

patch 8.2.3665: cannot use a lambda for 'tagfunc' Commit: https://github.com/vim/vim/commit/19916a8c8920b6a1fd737ffa6d4e363fc7a96319 Author: Yegappan Lakshmanan <yegappan@yahoo.com> Date: Wed Nov 24 16:32:55 2021 +0000 patch 8.2.3665: cannot use a lambda for 'tagfunc' Problem: Cannot use a lambda for 'tagfunc'. Solution: Use 'tagfunc' like 'opfunc'. (Yegappan Lakshmanan, closes https://github.com/vim/vim/issues/9204)
author Bram Moolenaar <Bram@vim.org>
date Wed, 24 Nov 2021 17:45:03 +0100
parents 848d4c6e391e
children 8aba638e91eb
comparison
equal deleted inserted replaced
26267:069672443852 26268:3aa48d4e3dc8
1 /* tag.c */ 1 /* tag.c */
2 int set_tagfunc_option(void);
3 void free_tagfunc_option(void);
4 void buf_set_tfu_callback(buf_T *buf);
2 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);
3 void tag_freematch(void); 6 void tag_freematch(void);
4 void do_tags(exarg_T *eap); 7 void do_tags(exarg_T *eap);
5 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);
6 void free_tag_stuff(void); 9 void free_tag_stuff(void);