view ci/if_ver-cmd.vim @ 34310:d6a6049a0965

Added tag v9.1.0089 for changeset d7cfd8fb1d75c3156f041f95412868ce4522440f
author Christian Brabandt <cb@256bit.org>
date Fri, 09 Feb 2024 19:45:07 +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>)