view ci/if_ver-cmd.vim @ 23399:8b4c5f00449e

Added tag v8.2.2242 for changeset 40f824f5c7c7b2915a6d05937ba58a932bee21a7
author Bram Moolenaar <Bram@vim.org>
date Tue, 29 Dec 2020 11:15:37 +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>)