view src/testdir/test_jumps.vim @ 23414:9bd3873b13e2 v8.2.2250

patch 8.2.2250: Vim9: sublist is ambiguous Commit: https://github.com/vim/vim/commit/de4f95b04134f6dfd10f60051a5078fd903a297d Author: Bram Moolenaar <Bram@vim.org> Date: Wed Dec 30 20:39:21 2020 +0100 patch 8.2.2250: Vim9: sublist is ambiguous Problem: Vim9: sublist is ambiguous. Solution: Require white space around the colon. (closes https://github.com/vim/vim/issues/7409)
author Bram Moolenaar <Bram@vim.org>
date Wed, 30 Dec 2020 20:45:03 +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