view ci/if_ver-cmd.vim @ 20761:8eb1d42ec2c9

Added tag v8.2.0932 for changeset 813b9a7064a49b085c8e3eccd66e957f432227f6
author Bram Moolenaar <Bram@vim.org>
date Mon, 08 Jun 2020 19:00:05 +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>)