view ci/if_ver-cmd.vim @ 34091:27bd5d0816e0

Added tag v9.1.0012 for changeset f425f4870873763a41418176a7c7e6adb71a84a0
author Christian Brabandt <cb@256bit.org>
date Fri, 05 Jan 2024 18:00:05 +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>)