aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorLuuk van Baal <luukvbaal@gmail.com>2023-04-26 17:08:35 +0200
committerLuuk van Baal <luukvbaal@gmail.com>2023-05-02 13:11:46 +0200
commit3a1973debceca29e65c4f7c83d025cb3314ebaf2 (patch)
tree9e95232ac61fcf9dda8389526a50165234d8e431 /src
parent8e4a4629cab3377ba6fd5e291cf5f17fb4ff8a5c (diff)
downloadrneovim-3a1973debceca29e65c4f7c83d025cb3314ebaf2.tar.gz
rneovim-3a1973debceca29e65c4f7c83d025cb3314ebaf2.tar.bz2
rneovim-3a1973debceca29e65c4f7c83d025cb3314ebaf2.zip
vim-patch:9.0.0672: line partly shows with 'smoothscroll' and 'scrolloff' zero
Problem: Cursor line only partly shows with 'smoothscroll' and 'scrolloff' zero. Solution: Do not use 'smoothscroll' when adjusting the bottom of the window. (closes vim/vim#11269) https://github.com/vim/vim/commit/9bab7a024393200bb2c03b3abddfda86436990a7 Co-authored-by: Bram Moolenaar <Bram@vim.org>
Diffstat (limited to 'src')
-rw-r--r--src/nvim/move.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/nvim/move.c b/src/nvim/move.c
index 5e85768865..0a91b12255 100644
--- a/src/nvim/move.c
+++ b/src/nvim/move.c
@@ -1627,6 +1627,7 @@ void scroll_cursor_bot(int min_scroll, int set_topbot)
{
int used;
int scrolled = 0;
+ int min_scrolled = 1;
int extra = 0;
lineoff_T loff;
lineoff_T boff;
@@ -1676,6 +1677,12 @@ void scroll_cursor_bot(int min_scroll, int set_topbot)
if (cln == curwin->w_botline) {
scrolled -= curwin->w_empty_rows;
}
+ min_scrolled = scrolled;
+ if (cln > curwin->w_botline && curwin->w_p_sms && curwin->w_p_wrap) {
+ for (linenr_T lnum = curwin->w_botline + 1; lnum <= cln; lnum++) {
+ min_scrolled += plines_win_nofill(curwin, lnum, true);
+ }
+ }
}
// Stop counting lines to scroll when
@@ -1777,6 +1784,10 @@ void scroll_cursor_bot(int min_scroll, int set_topbot)
if (line_count >= curwin->w_height_inner && line_count > min_scroll) {
scroll_cursor_halfway(false, true);
} else {
+ // With 'smoothscroll' scroll at least the height of the cursor line.
+ if (curwin->w_p_wrap && curwin->w_p_sms && line_count < min_scrolled) {
+ line_count = min_scrolled;
+ }
scrollup(line_count, true);
}