view src/testdir/test_version.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 dfdd973cf0c9
children
line wrap: on
line source

" Test :version Ex command

so check.vim
so shared.vim

func Test_version()
  " version should always return the same string.
  let v1 = execute('version')
  let v2 = execute('version')
  call assert_equal(v1, v2)

  call assert_match("^\n\nVIM - Vi IMproved .*", v1)
endfunc

func Test_version_redirect()
  CheckNotGui
  CheckCanRunGui
  CheckUnix

  call RunVim([], [], '--clean -g --version >Xversion 2>&1')
  call assert_match('Features included', readfile('Xversion')->join())

  call delete('Xversion')
endfunc

" vim: shiftwidth=2 sts=2 expandtab