view ci/if_ver-cmd.vim @ 28190:68db6dd59162

Added tag v8.2.4620 for changeset 7456bc6bf07753df9ee1abc5d38b9814a5ef4737
author Bram Moolenaar <Bram@vim.org>
date Thu, 24 Mar 2022 16:30: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>)