view ci/if_ver-cmd.vim @ 26489:f19d8c077771

Added tag v8.2.3774 for changeset 06aa56b32df4d8b4131872352080b5fafe060c5a
author Bram Moolenaar <Bram@vim.org>
date Fri, 10 Dec 2021 14:45: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>)