view ci/if_ver-cmd.vim @ 28432:5e295771ba24

Added tag v8.2.4740 for changeset 4fbdd4ce9edb8d4fd13e26a6f072e6729c42702f
author Bram Moolenaar <Bram@vim.org>
date Tue, 12 Apr 2022 14:00:06 +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>)