view ci/if_ver-cmd.vim @ 26645:6a31b4d210e0

Added tag v8.2.3851 for changeset 2fc1e528e0e17f5d2522faf747ef3b78c29a330b
author Bram Moolenaar <Bram@vim.org>
date Sun, 19 Dec 2021 13: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>)