view ci/if_ver-cmd.vim @ 19171:5b50aa1a67ca

Added tag v8.2.0144 for changeset ad40333f2ec0ea76b2cbcec6ff93886287d91551
author Bram Moolenaar <Bram@vim.org>
date Thu, 23 Jan 2020 16:30:04 +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>)