view ci/if_ver-1.vim @ 28670:239bd331e0a9 v8.2.4859

patch 8.2.4859: wget2 files are not recognized Commit: https://github.com/vim/vim/commit/3a974a89331182139e12386275f052a50c247ecb Author: Bram Moolenaar <Bram@vim.org> Date: Mon May 2 23:51:13 2022 +0100 patch 8.2.4859: wget2 files are not recognized Problem: wget2 files are not recognized. Solution: Add patterns to recognize wget2. (Doug Kearns)
author Bram Moolenaar <Bram@vim.org>
date Tue, 03 May 2022 01:00:03 +0200
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