From f9660b59b2bdaa3ec2e7b31ab52186ad8b99f047 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Sat, 16 Apr 2016 22:19:15 +0200 Subject: [PATCH] Add missing test file. --- src/testdir/test_goto.vim | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 src/testdir/test_goto.vim diff --git a/src/testdir/test_goto.vim b/src/testdir/test_goto.vim new file mode 100644 index 000000000..fb8f190fa --- /dev/null +++ b/src/testdir/test_goto.vim @@ -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 -- 2.50.1