view ci/if_ver-cmd.vim @ 20952:c297dfafbc7d

Added tag v8.2.1027 for changeset 64c1b0796c468be17d819ce104ffdc0860ee63fb
author Bram Moolenaar <Bram@vim.org>
date Sun, 21 Jun 2020 15:15:04 +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>)