comparison src/proto/dict.pro @ 17123:efc6f5e3b543 v8.1.1561

patch 8.1.1561: popup_setoptions() is not implemented yet commit https://github.com/vim/vim/commit/ae943150d3a2868a89df802c9f530331474451ec Author: Bram Moolenaar <Bram@vim.org> Date: Sun Jun 16 22:54:14 2019 +0200 patch 8.1.1561: popup_setoptions() is not implemented yet Problem: Popup_setoptions() is not implemented yet. Solution: Implement popup_setoptions(). Also add more fields to popup_getoptions().
author Bram Moolenaar <Bram@vim.org>
date Sun, 16 Jun 2019 23:00:05 +0200
parents 23645f9a5ce2
children 6604ecb7a615
comparison
equal deleted inserted replaced
17122:310e8655d123 17123:efc6f5e3b543
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 int dict_add_callback(dict_T *d, char *key, callback_T *cb);
21 void dict_iterate_start(typval_T *var, dict_iterator_T *iter); 22 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); 23 char_u *dict_iterate_next(dict_iterator_T *iter, typval_T **tv_result);
23 int dict_add_dict(dict_T *d, char *key, dict_T *dict); 24 int dict_add_dict(dict_T *d, char *key, dict_T *dict);
24 long dict_len(dict_T *d); 25 long dict_len(dict_T *d);
25 dictitem_T *dict_find(dict_T *d, char_u *key, int len); 26 dictitem_T *dict_find(dict_T *d, char_u *key, int len);