view ci/if_ver-cmd.vim @ 28770:c475992c9bee

Added tag v8.2.4909 for changeset 78fc778de07655559e8e96eafe0f8ac932bb7be8
author Bram Moolenaar <Bram@vim.org>
date Sat, 07 May 2022 17:45:03 +0200
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>)