mirror of
https://github.com/vim/vim.git
synced 2025-11-16 23:24:03 -05:00
patch 9.1.0380: Calculating line height for unnecessary amount of lines
Problem: Calculating line height for unnecessary amount of lines with
half-page scrolling (zhscn, after 9.1.0280)
Solution: Replace "limit_winheight" argument with higher resolution
"max" argument to which to limit the calculated line height
in plines_m_win() to (Luuk van Baal)
fixes: #14650
closes: #14652
Signed-off-by: Luuk van Baal <luukvbaal@gmail.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
This commit is contained in:
committed by
Christian Brabandt
parent
f351fd8292
commit
32d701f51b
@@ -1781,7 +1781,7 @@ win_update(win_T *wp)
|
|||||||
if (j < wp->w_height - 2) // not too far off
|
if (j < wp->w_height - 2) // not too far off
|
||||||
{
|
{
|
||||||
i = plines_m_win(wp, wp->w_topline, wp->w_lines[0].wl_lnum - 1,
|
i = plines_m_win(wp, wp->w_topline, wp->w_lines[0].wl_lnum - 1,
|
||||||
TRUE);
|
wp->w_height);
|
||||||
#ifdef FEAT_DIFF
|
#ifdef FEAT_DIFF
|
||||||
// insert extra lines for previously invisible filler lines
|
// insert extra lines for previously invisible filler lines
|
||||||
if (wp->w_lines[0].wl_lnum != wp->w_topline)
|
if (wp->w_lines[0].wl_lnum != wp->w_topline)
|
||||||
|
|||||||
13
src/misc1.c
13
src/misc1.c
@@ -497,12 +497,17 @@ plines_win_col(win_T *wp, linenr_T lnum, long column)
|
|||||||
return lines;
|
return lines;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Return number of window lines the physical line range from "first" until
|
||||||
|
* "last" will occupy in window "wp". Takes into account folding, 'wrap',
|
||||||
|
* topfill and filler lines beyond the end of the buffer. Limit to "max" lines.
|
||||||
|
*/
|
||||||
int
|
int
|
||||||
plines_m_win(win_T *wp, linenr_T first, linenr_T last, int limit_winheight)
|
plines_m_win(win_T *wp, linenr_T first, linenr_T last, int max)
|
||||||
{
|
{
|
||||||
int count = 0;
|
int count = 0;
|
||||||
|
|
||||||
while (first <= last && (!limit_winheight || count < wp->w_height))
|
while (first <= last && count < max)
|
||||||
{
|
{
|
||||||
#ifdef FEAT_FOLDING
|
#ifdef FEAT_FOLDING
|
||||||
int x;
|
int x;
|
||||||
@@ -531,9 +536,7 @@ plines_m_win(win_T *wp, linenr_T first, linenr_T last, int limit_winheight)
|
|||||||
if (first == wp->w_buffer->b_ml.ml_line_count + 1)
|
if (first == wp->w_buffer->b_ml.ml_line_count + 1)
|
||||||
count += diff_check_fill(wp, first);
|
count += diff_check_fill(wp, first);
|
||||||
#endif
|
#endif
|
||||||
if (limit_winheight && count > wp->w_height)
|
return MIN(max, count);
|
||||||
return wp->w_height;
|
|
||||||
return (count);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
int
|
int
|
||||||
|
|||||||
14
src/move.c
14
src/move.c
@@ -1455,7 +1455,7 @@ textpos2screenpos(
|
|||||||
|
|
||||||
is_folded = hasFoldingWin(wp, lnum, &lnum, NULL, TRUE, NULL);
|
is_folded = hasFoldingWin(wp, lnum, &lnum, NULL, TRUE, NULL);
|
||||||
#endif
|
#endif
|
||||||
row = plines_m_win(wp, wp->w_topline, lnum - 1, FALSE);
|
row = plines_m_win(wp, wp->w_topline, lnum - 1, INT_MAX);
|
||||||
// "row" should be the screen line where line "lnum" begins, which can
|
// "row" should be the screen line where line "lnum" begins, which can
|
||||||
// be negative if "lnum" is "w_topline" and "w_skipcol" is non-zero.
|
// be negative if "lnum" is "w_topline" and "w_skipcol" is non-zero.
|
||||||
row -= adjust_plines_for_skipcol(wp);
|
row -= adjust_plines_for_skipcol(wp);
|
||||||
@@ -3219,12 +3219,18 @@ pagescroll(int dir, long count, int half)
|
|||||||
|
|
||||||
int curscount = count;
|
int curscount = count;
|
||||||
// Adjust count so as to not reveal end of buffer lines.
|
// Adjust count so as to not reveal end of buffer lines.
|
||||||
if (dir == FORWARD)
|
if (dir == FORWARD
|
||||||
|
&& (curwin->w_topline + curwin->w_height + count > buflen
|
||||||
|
#ifdef FEAT_FOLDING
|
||||||
|
|| hasAnyFolding(curwin)
|
||||||
|
#endif
|
||||||
|
))
|
||||||
{
|
{
|
||||||
int n = plines_correct_topline(curwin, curwin->w_topline, FALSE);
|
int n = plines_correct_topline(curwin, curwin->w_topline, FALSE);
|
||||||
if (n - count < curwin->w_height && curwin->w_topline < buflen)
|
if (n - count < curwin->w_height && curwin->w_topline < buflen)
|
||||||
n += plines_m_win(curwin, curwin->w_topline + 1, buflen, FALSE);
|
n += plines_m_win(curwin, curwin->w_topline + 1, buflen,
|
||||||
if (n - count < curwin->w_height)
|
curwin->w_height + count);
|
||||||
|
if (n < curwin->w_height + count)
|
||||||
count = n - curwin->w_height;
|
count = n - curwin->w_height;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -654,8 +654,8 @@ popup_show_curline(win_T *wp)
|
|||||||
wp->w_topline = wp->w_buffer->b_ml.ml_line_count;
|
wp->w_topline = wp->w_buffer->b_ml.ml_line_count;
|
||||||
while (wp->w_topline < wp->w_cursor.lnum
|
while (wp->w_topline < wp->w_cursor.lnum
|
||||||
&& wp->w_topline < wp->w_buffer->b_ml.ml_line_count
|
&& wp->w_topline < wp->w_buffer->b_ml.ml_line_count
|
||||||
&& plines_m_win(wp, wp->w_topline, wp->w_cursor.lnum, FALSE)
|
&& plines_m_win(wp, wp->w_topline, wp->w_cursor.lnum,
|
||||||
> wp->w_height)
|
wp->w_height + 1) > wp->w_height)
|
||||||
++wp->w_topline;
|
++wp->w_topline;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -7,7 +7,7 @@ int plines_nofill(linenr_T lnum);
|
|||||||
int plines_win_nofill(win_T *wp, linenr_T lnum, int limit_winheight);
|
int plines_win_nofill(win_T *wp, linenr_T lnum, int limit_winheight);
|
||||||
int plines_win_nofold(win_T *wp, linenr_T lnum);
|
int plines_win_nofold(win_T *wp, linenr_T lnum);
|
||||||
int plines_win_col(win_T *wp, linenr_T lnum, long column);
|
int plines_win_col(win_T *wp, linenr_T lnum, long column);
|
||||||
int plines_m_win(win_T *wp, linenr_T first, linenr_T last, int limit_winheight);
|
int plines_m_win(win_T *wp, linenr_T first, linenr_T last, int max);
|
||||||
int gchar_pos(pos_T *pos);
|
int gchar_pos(pos_T *pos);
|
||||||
int gchar_cursor(void);
|
int gchar_cursor(void);
|
||||||
void pchar_cursor(int c);
|
void pchar_cursor(int c);
|
||||||
|
|||||||
@@ -704,6 +704,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
380,
|
||||||
/**/
|
/**/
|
||||||
379,
|
379,
|
||||||
/**/
|
/**/
|
||||||
|
|||||||
Reference in New Issue
Block a user