mirror of
https://github.com/neovim/neovim.git
synced 2025-11-17 15:51:32 +00:00
vim-patch:9.0.1257: code style is not check in test scripts
Problem: Code style is not check in test scripts.
Solution: Add basic code style check for test files.
94722c5107
Use Test_test_files() from latest Vim.
Co-authored-by: Bram Moolenaar <Bram@vim.org>
This commit is contained in:
@@ -1332,12 +1332,12 @@ endfunc
|
||||
func Test_diff_and_scroll()
|
||||
" this was causing an ml_get error
|
||||
set ls=2
|
||||
for i in range(winheight(0) * 2)
|
||||
call setline(i, i < winheight(0) - 10 ? i : i + 10)
|
||||
for i in range(winheight(0) * 2)
|
||||
call setline(i, i < winheight(0) - 10 ? i : i + 10)
|
||||
endfor
|
||||
vnew
|
||||
for i in range(winheight(0)*2 + 10)
|
||||
call setline(i, i < winheight(0) - 10 ? 0 : i)
|
||||
for i in range(winheight(0)*2 + 10)
|
||||
call setline(i, i < winheight(0) - 10 ? 0 : i)
|
||||
endfor
|
||||
diffthis
|
||||
wincmd p
|
||||
|
||||
Reference in New Issue
Block a user