view ci/if_ver-cmd.vim @ 33960:c61602501ba9

Added tag v9.0.2172 for changeset 07d5c4814c456114be4029da1cfe72852689b962
author Christian Brabandt <cb@256bit.org>
date Sat, 16 Dec 2023 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>)