diff options
| author | luukvbaal <luukvbaal@gmail.com> | 2024-09-01 14:19:19 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-09-01 20:19:19 +0800 |
| commit | 97f8d1de1cfaebd67bc994401da38b003b64b6df (patch) | |
| tree | 1e48ff34190d16889809a243669b4b004244513c /test/old/testdir | |
| parent | 9b983e5f6cbfeaaf491ad57912518042be650b6d (diff) | |
| download | rneovim-97f8d1de1cfaebd67bc994401da38b003b64b6df.tar.gz rneovim-97f8d1de1cfaebd67bc994401da38b003b64b6df.tar.bz2 rneovim-97f8d1de1cfaebd67bc994401da38b003b64b6df.zip | |
vim-patch:9.1.0708: Recursive window update does not account for reset skipcol (#30217)
Problem: Window is updated with potentially invalid skipcol in recursive
window update path. I.e. cursor outside of visible range in
large line that does not fit.
Solution: Make sure it is valid (Luuk van Baal).
https://github.com/vim/vim/commit/3d5065fc7553c8de3d0555c3085165bdd724663b
Diffstat (limited to 'test/old/testdir')
| -rw-r--r-- | test/old/testdir/test_scroll_opt.vim | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/test/old/testdir/test_scroll_opt.vim b/test/old/testdir/test_scroll_opt.vim index 02e1cc71e4..5bf071903b 100644 --- a/test/old/testdir/test_scroll_opt.vim +++ b/test/old/testdir/test_scroll_opt.vim @@ -1165,7 +1165,6 @@ func Test_smooth_long_scrolloff() END call writefile(lines, 'XSmoothLongScrolloff', 'D') let buf = RunVimInTerminal('-u NONE -S XSmoothLongScrolloff', #{rows: 8, cols: 40}) - "FIXME: empty screen due to reset_skipcol()/curs_columns() shenanigans call term_sendkeys(buf, ":norm j721|\<CR>") call VerifyScreenDump(buf, 'Test_smooth_long_scrolloff_1', {}) @@ -1185,7 +1184,6 @@ func Test_smooth_long_scrolloff() call VerifyScreenDump(buf, 'Test_smooth_long_scrolloff_6', {}) call term_sendkeys(buf, "gk") - "FIXME: empty screen due to reset_skipcol()/curs_columns() shenanigans call VerifyScreenDump(buf, 'Test_smooth_long_scrolloff_7', {}) call StopVimInTerminal(buf) |