view ci/if_ver-cmd.vim @ 27820:ba1d4ad637c0

Added tag v8.2.4435 for changeset f68947167523032630b5284f0b6cfb76608e8573
author Bram Moolenaar <Bram@vim.org>
date Mon, 21 Feb 2022 19:45: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>)