view ci/if_ver-1.vim @ 33926:4853947b16e4

CI: label.yml: fixup for v5 (#13673) Commit: https://github.com/vim/vim/commit/1760331ae317ba2743c93c359cba9bc563f80e25 Author: Philip H <47042125+pheiduck@users.noreply.github.com> Date: Wed Dec 13 08:50:35 2023 +0100 CI: label.yml: fixup for v5 (https://github.com/vim/vim/issues/13673) * label.yml: sync-labels true * fixup: remove unused lines Signed-off-by: Philip H <47042125+pheiduck@users.noreply.github.com> Signed-off-by: K.Takata <kentkt@csc.jp>
author Christian Brabandt <cb@256bit.org>
date Wed, 13 Dec 2023 09:00: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