view ci/if_ver-cmd.vim @ 29302:8b8aafbda944

Added tag v8.2.5167 for changeset fb375f0c6ea7bf941e1443d79ac665d0ecf22e3f
author Bram Moolenaar <Bram@vim.org>
date Mon, 27 Jun 2022 13:00:08 +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>)