view ci/if_ver-cmd.vim @ 23892:ca2346d6d6f1

Added tag v8.2.2488 for changeset 650070143c56a04c3eee001dc32063a04c022260
author Bram Moolenaar <Bram@vim.org>
date Mon, 08 Feb 2021 22:00: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>)