view ci/if_ver-1.vim @ 31459:09fe45711621 v9.0.1062

patch 9.0.1062: some test function names do not match what they are doing Commit: https://github.com/vim/vim/commit/4cd45f1408321905019614b40a2173fe0456a96d Author: zeertzjq <zeertzjq@outlook.com> Date: Thu Dec 15 13:48:30 2022 +0000 patch 9.0.1062: some test function names do not match what they are doing Problem: Some test function names do not match what they are doing. Solution: Leave out user data for the test that is called "NoUserData". (closes #11703)
author Bram Moolenaar <Bram@vim.org>
date Thu, 15 Dec 2022 15:00:04 +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