comparison src/proto/dict.pro @ 17905:fb773f73a4be v8.1.1949

patch 8.1.1949: cannot scroll a popup window to the very bottom Commit: https://github.com/vim/vim/commit/8c6173c7d3431dd8bc2b6ffc076ef49512a7e175 Author: Bram Moolenaar <Bram@vim.org> Date: Fri Aug 30 22:08:34 2019 +0200 patch 8.1.1949: cannot scroll a popup window to the very bottom Problem: Cannot scroll a popup window to the very bottom. Solution: Scroll to the bottom when the "firstline" property was set to -1. (closes #4577) Allow resetting min/max width/height.
author Bram Moolenaar <Bram@vim.org>
date Fri, 30 Aug 2019 22:15:04 +0200
parents 0f7ae8010787
children a3fce2763e83
comparison
equal deleted inserted replaced
17904:d3e61b35a3b6 17905:fb773f73a4be
24 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);
25 long dict_len(dict_T *d); 25 long dict_len(dict_T *d);
26 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);
27 char_u *dict_get_string(dict_T *d, char_u *key, int save); 27 char_u *dict_get_string(dict_T *d, char_u *key, int save);
28 varnumber_T dict_get_number(dict_T *d, char_u *key); 28 varnumber_T dict_get_number(dict_T *d, char_u *key);
29 varnumber_T dict_get_number_def(dict_T *d, char_u *key, int def);
29 varnumber_T dict_get_number_check(dict_T *d, char_u *key); 30 varnumber_T dict_get_number_check(dict_T *d, char_u *key);
30 char_u *dict2string(typval_T *tv, int copyID, int restore_copyID); 31 char_u *dict2string(typval_T *tv, int copyID, int restore_copyID);
31 int dict_get_tv(char_u **arg, typval_T *rettv, int evaluate, int literal); 32 int dict_get_tv(char_u **arg, typval_T *rettv, int evaluate, int literal);
32 void dict_extend(dict_T *d1, dict_T *d2, char_u *action); 33 void dict_extend(dict_T *d1, dict_T *d2, char_u *action);
33 dictitem_T *dict_lookup(hashitem_T *hi); 34 dictitem_T *dict_lookup(hashitem_T *hi);