view src/testdir/test_version.vim @ 24731:a6a4224902f5 v8.2.2904

patch 8.2.2904: "g$" causes scroll if half a double width char is visible Commit: https://github.com/vim/vim/commit/74ede80aeb272ac81d41a256057c4f250372dd00 Author: Bram Moolenaar <Bram@vim.org> Date: Sat May 29 19:18:01 2021 +0200 patch 8.2.2904: "g$" causes scroll if half a double width char is visible Problem: "g$" causes scroll if half a double width char is visible. Solution: Advance to the last fully visible character. (closes https://github.com/vim/vim/issues/8254)
author Bram Moolenaar <Bram@vim.org>
date Sat, 29 May 2021 19: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