view ci/if_ver-1.vim @ 34034:0794154316d1

runtime(Filelist): remove coveralls, move runtime/lang/Make_mvc.mak (#13790) Commit: https://github.com/vim/vim/commit/53860eb9ce6c5490ded1372607b18bb895bb2461 Author: Restorer <69863286+RestorerZ@users.noreply.github.com> Date: Fri Dec 29 01:11:48 2023 +0300 runtime(Filelist): remove coveralls, move runtime/lang/Make_mvc.mak (https://github.com/vim/vim/issues/13790) - File coveralls.yml removed from $(SRC_ALL), in patch 9.0.1752 (https://github.com/vim/vim/issues/12851) - runtime/lang/Make_mvc.mak moved from $(LANG_DOS) to $(RT_DOS) Signed-off-by: RestorerZ <restorer@mail2k.ru> Signed-off-by: Christian Brabandt <cb@256bit.org>
author Christian Brabandt <cb@256bit.org>
date Thu, 28 Dec 2023 23:15:07 +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