view src/testdir/test_jumps.vim @ 14627:335f32c55ac3 v8.1.0327

patch 8.1.0327: the "g CTRL-G" command isn't tested much commit https://github.com/vim/vim/commit/0529583ff144e2cb8fb57fe61a86997310bd7727 Author: Bram Moolenaar <Bram@vim.org> Date: Fri Aug 24 22:07:58 2018 +0200 patch 8.1.0327: the "g CTRL-G" command isn't tested much Problem: The "g CTRL-G" command isn't tested much. Solution: Add more tests. (Dominique Pelle, closes https://github.com/vim/vim/issues/3369)
author Christian Brabandt <cb@256bit.org>
date Fri, 24 Aug 2018 22:15:05 +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