view ci/if_ver-cmd.vim @ 25665:24738d70517a

Added tag v8.2.3368 for changeset 8c3204d810a7b408ca34bb6a2e6f339ee0373cf7
author Bram Moolenaar <Bram@vim.org>
date Mon, 23 Aug 2021 21:00:06 +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>)