view ci/if_ver-cmd.vim @ 19610:6eb401ee4b0c

Added tag v8.2.0361 for changeset fe827d6267c226320154ec36b035fa52ce90904e
author Bram Moolenaar <Bram@vim.org>
date Sat, 07 Mar 2020 17:00:07 +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>)