Mercurial > vim
view src/proto/tag.pro @ 34169:1f7df4dae067 v9.1.0042
patch 9.1.0042: Missing test for Chuck Filetype
Commit: https://github.com/vim/vim/commit/c1884c94c5d7246e53a83b03a35a66ce81b49f83
Author: Christian Brabandt <cb@256bit.org>
Date: Sun Jan 21 09:40:22 2024 +0100
patch 9.1.0042: Missing test for Chuck Filetype
Problem: Missing test for Chuck filetype
after commit 27a4632af6753
(Christian Clason)
Solution: Add a filetype test
Signed-off-by: Christian Brabandt <cb@256bit.org>
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Sun, 21 Jan 2024 09:45:07 +0100 |
parents | ca6bc7c04163 |
children | 814fcbca4d8d |
line wrap: on
line source
/* tag.c */ char *did_set_tagfunc(optset_T *args); void free_tagfunc_option(void); int set_ref_in_tagfunc(int copyID); void set_buflocal_tfu_callback(buf_T *buf); int do_tag(char_u *tag, int type, int count, int forceit, int verbose); void tag_freematch(void); void do_tags(exarg_T *eap); int find_tags(char_u *pat, int *num_matches, char_u ***matchesp, int flags, int mincount, char_u *buf_ffname); void free_tag_stuff(void); int get_tagfname(tagname_T *tnp, int first, char_u *buf); void tagname_free(tagname_T *tnp); int expand_tags(int tagnames, char_u *pat, int *num_file, char_u ***file); int get_tags(list_T *list, char_u *pat, char_u *buf_fname); void get_tagstack(win_T *wp, dict_T *retdict); int set_tagstack(win_T *wp, dict_T *d, int action); /* vim: set ft=c : */