comparison src/proto/tag.pro @ 15016:c338c91086b9 v8.1.0519

patch 8.1.0519: cannot save and restore the tag stack commit https://github.com/vim/vim/commit/f49cc60aa802862c595ff619dccc11271633a94b Author: Bram Moolenaar <Bram@vim.org> Date: Sun Nov 11 15:21:05 2018 +0100 patch 8.1.0519: cannot save and restore the tag stack Problem: Cannot save and restore the tag stack. Solution: Add gettagstack() and settagstack(). (Yegappan Lakshmanan, closes #3604)
author Bram Moolenaar <Bram@vim.org>
date Sun, 11 Nov 2018 15:30:07 +0100
parents d3415ec1cdaf
children 848d4c6e391e
comparison
equal deleted inserted replaced
15015:abcfa9dcc93f 15016:c338c91086b9
7 int get_tagfname(tagname_T *tnp, int first, char_u *buf); 7 int get_tagfname(tagname_T *tnp, int first, char_u *buf);
8 void tagname_free(tagname_T *tnp); 8 void tagname_free(tagname_T *tnp);
9 void simplify_filename(char_u *filename); 9 void simplify_filename(char_u *filename);
10 int expand_tags(int tagnames, char_u *pat, int *num_file, char_u ***file); 10 int expand_tags(int tagnames, char_u *pat, int *num_file, char_u ***file);
11 int get_tags(list_T *list, char_u *pat, char_u *buf_fname); 11 int get_tags(list_T *list, char_u *pat, char_u *buf_fname);
12 void get_tagstack(win_T *wp, dict_T *retdict);
13 int set_tagstack(win_T *wp, dict_T *d, int action);
12 /* vim: set ft=c : */ 14 /* vim: set ft=c : */