view ci/if_ver-cmd.vim @ 34054:d5d33dfa2340

Added tag v9.0.2190 for changeset 19cdfe7681045eabcb442bd5f4b4f6cead4b8ca5
author Christian Brabandt <cb@256bit.org>
date Mon, 01 Jan 2024 20:30:03 +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>)