view ci/if_ver-cmd.vim @ 29169:0d74b4bb4970 v8.2.5104

patch 8.2.5104: test hangs on MS-Windows Commit: https://github.com/vim/vim/commit/b31cb04771234556374cda45ce19dabd4a2a7fc7 Author: Bram Moolenaar <Bram@vim.org> Date: Wed Jun 15 21:28:55 2022 +0100 patch 8.2.5104: test hangs on MS-Windows Problem: Test hangs on MS-Windows. Solution: Skip another test on MS-Windows.
author Bram Moolenaar <Bram@vim.org>
date Wed, 15 Jun 2022 22:30:02 +0200
parents 27ff44268da5
children
line wrap: on
line source

" Provide 'PrintVer' command to print the interface versions.

func s:print_ver(lang, ...)
  if has(a:lang)
    exec a:lang join(a:000)
  else
    echo 'N/A'
  endif
  echo ''
endfunc

command -nargs=+ PrintVer call <SID>print_ver(<f-args>)