diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-11-03 22:29:38 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-11-03 22:29:38 +0100 |
commit | 30efcf3d26bd14af71cd306c4c5f9e789a7130c9 (patch) | |
tree | 515d0e5a4b3408311c2e671d3604348ad4131fe9 /runtime | |
parent | d047840ce4b770a86bacab0d62e72d0f61a2b8ab (diff) | |
download | vim-git-30efcf3d26bd14af71cd306c4c5f9e789a7130c9.tar.gz |
patch 8.1.2250: CTRL-U and CTRL-D don't work in popup windowv8.1.2250
Problem: CTRL-U and CTRL-D don't work in popup window.
Solution: Initialize 'scroll'. Add "lastline" in popup_getpos().
(closes #5170)
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/doc/popup.txt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/runtime/doc/popup.txt b/runtime/doc/popup.txt index 2ac54b638..fc00ecffc 100644 --- a/runtime/doc/popup.txt +++ b/runtime/doc/popup.txt @@ -1,4 +1,4 @@ -*popup.txt* For Vim version 8.1. Last change: 2019 Oct 20 +*popup.txt* For Vim version 8.1. Last change: 2019 Nov 03 VIM REFERENCE MANUAL by Bram Moolenaar @@ -362,6 +362,7 @@ popup_getpos({id}) *popup_getpos()* core_height height of the text box in screen cells firstline line of the buffer at top (1 unless scrolled) (not the value of the "firstline" property) + lastline line of the buffer at the bottom scrollbar non-zero if a scrollbar is displayed visible one if the popup is displayed, zero if hidden Note that these are the actual screen positions. They differ |