view ci/if_ver-1.vim @ 27229:6837d2c14dee v8.2.4143

patch 8.2.4143: MS-Windows: IME support for Win9x is obsolete Commit: https://github.com/vim/vim/commit/b0b2b73dca40c26ff1f4befe5c3aad3fd4bccfad Author: K.Takata <kentkt@csc.jp> Date: Wed Jan 19 12:59:21 2022 +0000 patch 8.2.4143: MS-Windows: IME support for Win9x is obsolete Problem: MS-Windows: IME support for Win9x is obsolete. Solution: Remove the Win9x code. (Ken Takata, closes https://github.com/vim/vim/issues/9559)
author Bram Moolenaar <Bram@vim.org>
date Wed, 19 Jan 2022 14:00:04 +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