view ci/if_ver-cmd.vim @ 33643:17c34403314e

Added tag v9.0.2061 for changeset 2d48081760a047d1eb0b9a432071d9dd92616c07
author Christian Brabandt <cb@256bit.org>
date Mon, 23 Oct 2023 19:30:07 +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>)