view src/testdir/test_jumps.vim @ 26889:4508f62e5318 v8.2.3973

patch 8.2.3973: tiny build fails Commit: https://github.com/vim/vim/commit/0f7a5e758c5d8be2d8f1ab4a145d1636a36d18b2 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Jan 1 16:31:48 2022 +0000 patch 8.2.3973: tiny build fails Problem: Tiny build fails. Solution: Adjust #ifdefs
author Bram Moolenaar <Bram@vim.org>
date Sat, 01 Jan 2022 17:45:02 +0100
parents 08940efa6b4e
children
line wrap: on
line source

" Test for '' mark in an empty buffer

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

" vim: shiftwidth=2 sts=2 expandtab