view ci/if_ver-1.vim @ 25848:86c3af1be1db v8.2.3458

patch 8.2.3458: not all dictdconf files are recognized Commit: https://github.com/vim/vim/commit/be01090efad242e30728275dea05420db6f96257 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Sep 26 22:11:52 2021 +0100 patch 8.2.3458: not all dictdconf files are recognized Problem: Not all dictdconf files are recognized. Solution: Adjust the pattern. (Doug Kearns)
author Bram Moolenaar <Bram@vim.org>
date Sun, 26 Sep 2021 23:15: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