vim-patch:f9660b5

Add missing test file.

f9660b59b2
This commit is contained in:
James McCoy 2016-12-02 16:03:39 -05:00
parent fa9cd8b878
commit a4f646dde8
No known key found for this signature in database
GPG Key ID: DFE691AE331BA3DB

View File

@ -0,0 +1,10 @@
" Test commands that jump somewhere.
func Test_geedee()
new
call setline(1, ["Filename x;", "", "int Filename", "int func() {", "Filename y;"])
/y;/
normal gD
call assert_equal(1, line('.'))
quit!
endfunc