view ci/if_ver-1.vim @ 34429:a0754587f167

runtime(doc): fix inconsistent indent (#14089) Commit: https://github.com/vim/vim/commit/d086b8f646a67f6b16c46061ce773de1011b8ec7 Author: zeertzjq <zeertzjq@outlook.com> Date: Sun Feb 25 15:42:52 2024 +0800 runtime(doc): fix inconsistent indent (https://github.com/vim/vim/issues/14089) Signed-off-by: zeertzjq <zeertzjq@outlook.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
author Christian Brabandt <cb@256bit.org>
date Sun, 25 Feb 2024 08:45:08 +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