comparison src/proto/dict.pro @ 16447:54ffc82f38a8 v8.1.1228

patch 8.1.1228: not possible to process tags with a function commit https://github.com/vim/vim/commit/45e18cbdc40afd8144d20dcc07ad2d981636f4c9 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Apr 28 18:05:35 2019 +0200 patch 8.1.1228: not possible to process tags with a function Problem: Not possible to process tags with a function. Solution: Add tagfunc() (Christian Brabandt, Andy Massimino, closes https://github.com/vim/vim/issues/4010)
author Bram Moolenaar <Bram@vim.org>
date Sun, 28 Apr 2019 18:15:07 +0200
parents 0f65f2808470
children 23645f9a5ce2
comparison
equal deleted inserted replaced
16446:cee0719a1b4b 16447:54ffc82f38a8
16 int dict_add_number(dict_T *d, char *key, varnumber_T nr); 16 int dict_add_number(dict_T *d, char *key, varnumber_T nr);
17 int dict_add_special(dict_T *d, char *key, varnumber_T nr); 17 int dict_add_special(dict_T *d, char *key, varnumber_T nr);
18 int dict_add_string(dict_T *d, char *key, char_u *str); 18 int dict_add_string(dict_T *d, char *key, char_u *str);
19 int dict_add_string_len(dict_T *d, char *key, char_u *str, int len); 19 int dict_add_string_len(dict_T *d, char *key, char_u *str, int len);
20 int dict_add_list(dict_T *d, char *key, list_T *list); 20 int dict_add_list(dict_T *d, char *key, list_T *list);
21 void dict_iterate_start(typval_T *var, dict_iterator_T *iter);
22 char_u *dict_iterate_next(dict_iterator_T *iter, typval_T **tv_result);
21 int dict_add_dict(dict_T *d, char *key, dict_T *dict); 23 int dict_add_dict(dict_T *d, char *key, dict_T *dict);
22 long dict_len(dict_T *d); 24 long dict_len(dict_T *d);
23 dictitem_T *dict_find(dict_T *d, char_u *key, int len); 25 dictitem_T *dict_find(dict_T *d, char_u *key, int len);
24 char_u *dict_get_string(dict_T *d, char_u *key, int save); 26 char_u *dict_get_string(dict_T *d, char_u *key, int save);
25 varnumber_T dict_get_number(dict_T *d, char_u *key); 27 varnumber_T dict_get_number(dict_T *d, char_u *key);