summaryrefslogtreecommitdiff
path: root/src/testdir/test_goto.vim
blob: 2afd96b2960627242f34f6c56e0fe2b3c9e4db58 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
" 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