view src/testdir/test_goto.vim @ 9254:05e7d084c6c2 v7.4.1910

commit https://github.com/vim/vim/commit/abc70bbf363dbbe3f2bf714102f55648a512791e Author: Bram Moolenaar <Bram@vim.org> Date: Wed Jun 8 21:48:50 2016 +0200 patch 7.4.1910 Problem: Tests using external command to delete directory. Solution: Use delete().
author Christian Brabandt <cb@256bit.org>
date Wed, 08 Jun 2016 22:00:06 +0200
parents f0d7dfb136bc
children 1b4946fa3777
line wrap: on
line source

" 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