view ci/if_ver-cmd.vim @ 25602:39d590a60afb

Added tag v8.2.3337 for changeset df3d056b46630fabec2d2d7d2742c35632c8aeb8
author Bram Moolenaar <Bram@vim.org>
date Fri, 13 Aug 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>)