view src/testdir/test_jumps.vim @ 25866:45a8b2b2f652 v8.2.3467

patch 8.2.3467: CursorHoldI event interferes with "CTRL-G U" Commit: https://github.com/vim/vim/commit/5a9357d0bff9059f547906d8d03b31bca7215af1 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Oct 3 16:22:05 2021 +0100 patch 8.2.3467: CursorHoldI event interferes with "CTRL-G U" Problem: CursorHoldI event interferes with "CTRL-G U". (Naohiro Ono) Solution: Restore the flag for "CTRL-G U" after triggering CursorHoldI. (closes #8937)
author Bram Moolenaar <Bram@vim.org>
date Sun, 03 Oct 2021 17:30:03 +0200
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