view ci/if_ver-cmd.vim @ 27300:160b87e56c45

Added tag v8.2.4178 for changeset 7218ad7a55d2f2fdfc00ec6222abc13909516cef
author Bram Moolenaar <Bram@vim.org>
date Sat, 22 Jan 2022 13:30: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>)