summaryrefslogtreecommitdiffstats
path: root/src/proto/dict.pro
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-08-30 22:08:34 +0200
committerBram Moolenaar <Bram@vim.org>2019-08-30 22:08:34 +0200
commit8c6173c7d3431dd8bc2b6ffc076ef49512a7e175 (patch)
treeea731594d1036e094132f9d0816e30b9717f5405 /src/proto/dict.pro
parentb5432d8968bda70fc20ebb5e136e367d174d1c4e (diff)
patch 8.1.1949: cannot scroll a popup window to the very bottomv8.1.1949
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.
Diffstat (limited to 'src/proto/dict.pro')
-rw-r--r--src/proto/dict.pro1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/proto/dict.pro b/src/proto/dict.pro
index 388ddac9e6..3185edc8c3 100644
--- a/src/proto/dict.pro
+++ b/src/proto/dict.pro
@@ -26,6 +26,7 @@ long dict_len(dict_T *d);
dictitem_T *dict_find(dict_T *d, char_u *key, int len);
char_u *dict_get_string(dict_T *d, char_u *key, int save);
varnumber_T dict_get_number(dict_T *d, char_u *key);
+varnumber_T dict_get_number_def(dict_T *d, char_u *key, int def);
varnumber_T dict_get_number_check(dict_T *d, char_u *key);
char_u *dict2string(typval_T *tv, int copyID, int restore_copyID);
int dict_get_tv(char_u **arg, typval_T *rettv, int evaluate, int literal);