view ci/if_ver-1.vim @ 19318:673a95ef80af v8.2.0217

patch 8.2.0217: terminal test fails on Mac Commit: https://github.com/vim/vim/commit/adbc11c2ee828fcc9d79c7d3c0c968c68657e3d1 Author: Bram Moolenaar <Bram@vim.org> Date: Wed Feb 5 22:21:08 2020 +0100 patch 8.2.0217: terminal test fails on Mac Problem: Terminal test fails on Mac. Solution: Add a short wait.
author Bram Moolenaar <Bram@vim.org>
date Wed, 05 Feb 2020 22:30:04 +0100
parents 27ff44268da5
children 0878f0fd349b
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(_VERSION)

  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