view ci/if_ver-cmd.vim @ 26314:3b8095ac79d8

Added tag v8.2.3687 for changeset 74e706afae3f58773d80fae04cb448a06a671614
author Bram Moolenaar <Bram@vim.org>
date Sun, 28 Nov 2021 00:00: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>)