view src/testdir/test_goto.vim @ 10210:2720a028af30

Added tag v8.0.0005 for changeset 3bb89aba6064c8813fb25c6f58836fef746fb03f
author Christian Brabandt <cb@256bit.org>
date Thu, 15 Sep 2016 11:45:07 +0200
parents 1b4946fa3777
children bc442c2296a7
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

func Test_gee_dee()
  new
  call setline(1, ["int x;", "", "int func(int x)", "{", "  return x;", "}"])
  /return/
  normal $hgd
  call assert_equal(3, line('.'))
  call assert_equal(14, col('.'))
  quit!
endfunc