view ci/if_ver-cmd.vim @ 26182:c3b0032c8117

Added tag v8.2.3622 for changeset 027c5b4b6f073eeca6d131a0550b541a7bfd1478
author Bram Moolenaar <Bram@vim.org>
date Fri, 19 Nov 2021 13:00:06 +0100
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>)