view ci/if_ver-1.vim @ 26520:bea106f5fd26 v8.2.3789

patch 8.2.3789: Test_window_minimal_size can fail on a slow machine Commit: https://github.com/vim/vim/commit/fa9a8e0fd1143d2b47611c6cc13e32f6283448a4 Author: ichizok <gclient.gaap@gmail.com> Date: Sun Dec 12 16:42:09 2021 +0000 patch 8.2.3789: Test_window_minimal_size can fail on a slow machine Problem: Test_window_minimal_size can fail on a slow machine. Solution: Do not rely on timers firing at the expected time. (Ozaki Kiichi, closes #9335)
author Bram Moolenaar <Bram@vim.org>
date Sun, 12 Dec 2021 17:45:03 +0100
parents 0878f0fd349b
children
line wrap: on
line source

" Print all interface versions for Ubuntu. Part 1.

if 1
  execute 'source' expand('<sfile>:h') .. '/if_ver-cmd.vim'

  echo "*** Interface versions ***\n"

  echo 'Lua:'
  PrintVer lua print(vim.lua_version, jit and "(LuaJIT)" or "")

  echo 'MzScheme:'
  PrintVer mzscheme (display (version))

  echo 'Perl:'
  PrintVer perl print $^V

  echo 'Ruby:'
  PrintVer ruby print RUBY_VERSION

  echo 'Tcl:'
  PrintVer tcl puts [info patchlevel]

  echo 'Python 2:'
  PrintVer python print sys.version
endif