view ci/if_ver-1.vim @ 23031:b68313ee7002 v8.2.2062

patch 8.2.2062: <Cmd> does not handle CTRL-V Commit: https://github.com/vim/vim/commit/4a44120e3dc1d40dd7109658afd5e078360b1d8f Author: Bram Moolenaar <Bram@vim.org> Date: Sat Nov 28 14:43:26 2020 +0100 patch 8.2.2062: <Cmd> does not handle CTRL-V Problem: <Cmd> does not handle CTRL-V. Solution: Call get_literal() after encountering CTRL-V. (closes https://github.com/vim/vim/issues/7387)
author Bram Moolenaar <Bram@vim.org>
date Sat, 28 Nov 2020 14:45:04 +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