Mercurial > vim
view src/testdir/test_recover.vim @ 17859:06e655ce1938 v8.1.1926
patch 8.1.1926: cursorline not redrawn when putting a line above the cursor
Commit: https://github.com/vim/vim/commit/c2b97643a82bb9fbd202312dac4aa995f92e9e5b
Author: Bram Moolenaar <Bram@vim.org>
Date: Sun Aug 25 14:48:37 2019 +0200
patch 8.1.1926: cursorline not redrawn when putting a line above the cursor
Problem: Cursorline not redrawn when putting a line above the cursor.
Solution: Redraw when the curor line is below a change. (closes https://github.com/vim/vim/issues/4862)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sun, 25 Aug 2019 15:00:04 +0200 |
parents | 1fad9675d8fd |
children | 11394af51615 |
line wrap: on
line source
" Test :recover func Test_recover_root_dir() " This used to access invalid memory. split Xtest set dir=/ call assert_fails('recover', 'E305:') close! if has('win32') || filewritable('/') == 2 " can write in / directory on MS-Windows set dir=/notexist/ endif call assert_fails('split Xtest', 'E303:') set dir& endfunc " Inserts 10000 lines with text to fill the swap file with two levels of pointer " blocks. Then recovers from the swap file and checks all text is restored. " " We need about 10000 lines of 100 characters to get two levels of pointer " blocks. func Test_swap_file() set fileformat=unix undolevels=-1 edit! Xtest let text = "\tabcdefghijklmnoparstuvwxyz0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnoparstuvwxyz0123456789" let i = 1 let linecount = 10000 while i <= linecount call append(i - 1, i . text) let i += 1 endwhile $delete preserve " get the name of the swap file let swname = split(execute("swapname"))[0] let swname = substitute(swname, '[[:blank:][:cntrl:]]*\(.\{-}\)[[:blank:][:cntrl:]]*$', '\1', '') " make a copy of the swap file in Xswap set binary exe 'sp ' . swname w! Xswap set nobinary new only! bwipe! Xtest call rename('Xswap', swname) recover Xtest call delete(swname) let linedollar = line('$') call assert_equal(linecount, linedollar) if linedollar < linecount let linecount = linedollar endif let i = 1 while i <= linecount call assert_equal(i . text, getline(i)) let i += 1 endwhile set undolevels& enew! | only endfunc