view ci/if_ver-cmd.vim @ 25857:03c061ca9855

Added tag v8.2.3462 for changeset 1a5351f6803f38893fcf9eb9391c5e58371e2201
author Bram Moolenaar <Bram@vim.org>
date Sat, 02 Oct 2021 18:00:05 +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>)