view ci/if_ver-cmd.vim @ 19478:98e759662690

Added tag v8.2.0296 for changeset 2bb0e80fcd32433b9d113489c0c2f8b3cb225c6d
author Bram Moolenaar <Bram@vim.org>
date Sat, 22 Feb 2020 14:30:05 +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>)