view ci/if_ver-cmd.vim @ 26359:93ab37175d0c

Added tag v8.2.3710 for changeset 80b555c4aed05abc0de464fcfea02d2289e2fcc9
author Bram Moolenaar <Bram@vim.org>
date Wed, 01 Dec 2021 10:30:07 +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>)