vim-patch:9.0.1512: inserting lines when scrolling with 'smoothscroll' set

Problem:    Inserting lines when scrolling with 'smoothscroll' set.
Solution:   Adjust line height computation for w_skipcol. (Luuk van Baal,
            closes vim/vim#12350)

c8502f9b88
This commit is contained in:
Luuk van Baal 2023-05-06 17:33:42 +02:00
parent ca5a810c4a
commit 3b2bd8d69e
4 changed files with 59 additions and 5 deletions

View File

@ -2101,7 +2101,12 @@ static void win_update(win_T *wp, DecorProviders *providers)
if (hasFoldingWin(wp, l, NULL, &l, true, NULL)) { if (hasFoldingWin(wp, l, NULL, &l, true, NULL)) {
new_rows++; new_rows++;
} else if (l == wp->w_topline) { } else if (l == wp->w_topline) {
new_rows += plines_win_nofill(wp, l, true) + wp->w_topfill; int n = plines_win_nofill(wp, l, false) + wp->w_topfill;
n = adjust_plines_for_skipcol(wp, n);
if (n > wp->w_height_inner) {
n = wp->w_height_inner;
}
new_rows += n;
} else { } else {
new_rows += plines_win(wp, l, true); new_rows += plines_win(wp, l, true);
} }

View File

@ -58,7 +58,7 @@ typedef struct {
#endif #endif
/// Reduce "n" for the screen lines skipped with "wp->w_skipcol". /// Reduce "n" for the screen lines skipped with "wp->w_skipcol".
static int adjust_plines_for_skipcol(win_T *wp, int n) int adjust_plines_for_skipcol(win_T *wp, int n)
{ {
if (wp->w_skipcol == 0) { if (wp->w_skipcol == 0) {
return n; return n;
@ -196,7 +196,7 @@ static int skipcol_from_plines(win_T *wp, int plines_off)
return skipcol; return skipcol;
} }
/// Set wp->s_skipcol to zero and redraw later if needed. /// Set wp->w_skipcol to zero and redraw later if needed.
static void reset_skipcol(win_T *wp) static void reset_skipcol(win_T *wp)
{ {
if (wp->w_skipcol != 0) { if (wp->w_skipcol != 0) {
@ -2267,7 +2267,7 @@ void cursor_correct(void)
} }
if (curwin->w_p_sms && !curwin->w_p_wrap) { if (curwin->w_p_sms && !curwin->w_p_wrap) {
// 'smoothscroll is active // 'smoothscroll' is active
if (curwin->w_cline_height == curwin->w_height_inner) { if (curwin->w_cline_height == curwin->w_height_inner) {
// The cursor line just fits in the window, don't scroll. // The cursor line just fits in the window, don't scroll.
reset_skipcol(curwin); reset_skipcol(curwin);

View File

@ -695,6 +695,30 @@ describe('smoothscroll', function()
]]) ]])
end) end)
-- oldtest: Test_smoothscroll_ins_lines()
it("this was unnecessarily inserting lines", function()
screen:try_resize(40, 6)
exec([=[
set wrap smoothscroll scrolloff=0 conceallevel=2 concealcursor=nc
call setline(1, [
\'line one' .. 'with lots of text in one line '->repeat(2),
\'line two',
\'line three',
\'line four',
\'line five'
\])
]=])
feed('<C-E>gjgk')
screen:expect([[
<<<lots of text in one line^ |
line two |
line three |
line four |
line five |
|
]])
end)
it("works with virt_lines above and below", function() it("works with virt_lines above and below", function()
screen:try_resize(55, 7) screen:try_resize(55, 7)
exec([=[ exec([=[

View File

@ -587,7 +587,7 @@ func Test_smoothscroll_mouse_pos()
endfunc endfunc
" this was dividing by zero " this was dividing by zero
func Test_smoothscrol_zero_width() func Test_smoothscroll_zero_width()
CheckScreendump CheckScreendump
let lines =<< trim END let lines =<< trim END
@ -613,5 +613,30 @@ func Test_smoothscrol_zero_width()
call StopVimInTerminal(buf) call StopVimInTerminal(buf)
endfunc endfunc
" this was unnecessarily inserting lines
func Test_smoothscroll_ins_lines()
CheckScreendump
let lines =<< trim END
set wrap
set smoothscroll
set scrolloff=0
set conceallevel=2
call setline(1, [
\'line one' .. 'with lots of text in one line '->repeat(2),
\'line two',
\'line three',
\'line four',
\'line five'
\])
END
call writefile(lines, 'XSmoothScrollInsLines', 'D')
let buf = RunVimInTerminal('-S XSmoothScrollInsLines', #{rows: 6, cols: 40})
call term_sendkeys(buf, "\<C-E>gjgk")
call VerifyScreenDump(buf, 'Test_smooth_ins_lines', {})
call StopVimInTerminal(buf)
endfunc
" vim: shiftwidth=2 sts=2 expandtab " vim: shiftwidth=2 sts=2 expandtab