view ci/if_ver-cmd.vim @ 27961:dd28ede556db

Added tag v8.2.4505 for changeset be693de4063480f0a418486be32cd38ca86fe991
author Bram Moolenaar <Bram@vim.org>
date Fri, 04 Mar 2022 21:15:03 +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>)