view ci/if_ver-1.vim @ 19356:f559be3c53d7 v8.2.0236

patch 8.2.0236: MS-Windows unintall doesn't delete vimtutur.bat Commit: https://github.com/vim/vim/commit/57ea2924e5dd14aac716a1ee349bdb61f6429f59 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Feb 9 14:27:20 2020 +0100 patch 8.2.0236: MS-Windows unintall doesn't delete vimtutur.bat Problem: MS-Windows unintall doesn't delete vimtutur.bat. Solution: Change directory before deletion. (Ken Takata, closes https://github.com/vim/vim/issues/5603)
author Bram Moolenaar <Bram@vim.org>
date Sun, 09 Feb 2020 14:30:09 +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