view ci/if_ver-cmd.vim @ 30587:8b4040d04c32

Added tag v9.0.0628 for changeset 4a1b0a12b4301a79cdb2ce7c1aeff27cfd63d6b7
author Bram Moolenaar <Bram@vim.org>
date Fri, 30 Sep 2022 13:15:03 +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>)