view ci/if_ver-1.vim @ 22792:670c69ac1bfb v8.2.1944

patch 8.2.1944: Netbeans test is flaky Commit: https://github.com/vim/vim/commit/6fd3a4ba2320c4a95f02daef5f2ac76d3105d013 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Nov 3 11:53:29 2020 +0100 patch 8.2.1944: Netbeans test is flaky Problem: Netbeans test is flaky. Solution: Add a short delay. (Yegappan Lakshmanan, closes https://github.com/vim/vim/issues/7246)
author Bram Moolenaar <Bram@vim.org>
date Tue, 03 Nov 2020 12:00:03 +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