comparison src/testdir/test_goto.vim @ 8925:f0d7dfb136bc

commit https://github.com/vim/vim/commit/f9660b59b2bdaa3ec2e7b31ab52186ad8b99f047 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Apr 16 22:19:15 2016 +0200 Add missing test file.
author Christian Brabandt <cb@256bit.org>
date Sat, 16 Apr 2016 22:30:05 +0200
parents
children 1b4946fa3777
comparison
equal deleted inserted replaced
8924:1c174f5abd07 8925:f0d7dfb136bc
1 " Test commands that jump somewhere.
2
3 func Test_geedee()
4 new
5 call setline(1, ["Filename x;", "", "int Filename", "int func() {", "Filename y;"])
6 /y;/
7 normal gD
8 call assert_equal(1, line('.'))
9 quit!
10 endfunc