view src/testdir/test_jumps.vim @ 9689:75466263dfbd

Added tag v7.4.2120 for changeset 2ea935bdd1a191aebc1492e8899f01b511333db9
author Christian Brabandt <cb@256bit.org>
date Fri, 29 Jul 2016 22:45:07 +0200
parents 5ec4fbfe38c5
children 08940efa6b4e
line wrap: on
line source

func Test_empty_buffer()
  new
  insert
a
b
c
d
.
  call assert_equal(1, line("''"))
  bwipe!
endfunc