mirror of
https://github.com/vim/vim.git
synced 2025-11-09 10:37:17 -05:00
updated for version 7.3.708
Problem: Filler lines above the first line may be hidden when opening Vim. Solution: Change how topfill is computed. (Christian Brabandt)
This commit is contained in:
@@ -36,7 +36,22 @@ j:let three = three . "-" . winline()
|
||||
:call append("$", two)
|
||||
:call append("$", three)
|
||||
:$-2,$w! test.out
|
||||
:unlet one two three
|
||||
:" Test that diffing shows correct filler lines
|
||||
:diffoff!
|
||||
:windo :bw!
|
||||
:enew
|
||||
:put =range(4,10)
|
||||
:1d _
|
||||
:vnew
|
||||
:put =range(1,10)
|
||||
:1d _
|
||||
:windo :diffthis
|
||||
:wincmd h
|
||||
:let w0=line('w0')
|
||||
:enew
|
||||
:put =w0
|
||||
:.w >> test.out
|
||||
:unlet! one two three w0
|
||||
:qa!
|
||||
ENDTEST
|
||||
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
2-4-5-6-8-9
|
||||
1-2-4-5-8
|
||||
2-3-4-5-6-7-8
|
||||
1
|
||||
|
||||
Reference in New Issue
Block a user