diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-05-12 14:25:30 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-05-12 14:25:30 +0200 |
commit | a9b2535f44f3265940a18d08520a9ad4ef7bda82 (patch) | |
tree | ee6639498be277a3ca35ee1295518530d72ee4b4 /src/window.c | |
parent | 8aad88d8de256e58f04054eb7230c9613e26502f (diff) | |
download | vim-git-a9b2535f44f3265940a18d08520a9ad4ef7bda82.tar.gz |
patch 8.1.1327: unnecessary scroll after horizontal splitv8.1.1327
Problem: Unnecessary scroll after horizontal split.
Solution: Don't adjust to fraction if all the text fits in the window.
(Martin Kunev, closes #4367)
Diffstat (limited to 'src/window.c')
-rw-r--r-- | src/window.c | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/src/window.c b/src/window.c index f8df1cc31..f03198919 100644 --- a/src/window.c +++ b/src/window.c @@ -5827,9 +5827,13 @@ scroll_to_fraction(win_T *wp, int prev_height) int sline, line_size; int height = wp->w_height; - // Don't change w_topline when height is zero. Don't set w_topline when - // 'scrollbind' is set and this isn't the current window. - if (height > 0 && (!wp->w_p_scb || wp == curwin)) + // Don't change w_topline in any of these cases: + // - window height is 0 + // - 'scrollbind' is set and this isn't the current window + // - window height is sufficient to display the whole buffer + if (height > 0 + && (!wp->w_p_scb || wp == curwin) + && (height < wp->w_buffer->b_ml.ml_line_count)) { /* * Find a value for w_topline that shows the cursor at the same |