view ci/if_ver-cmd.vim @ 31899:e13629a1e661

Added tag v9.0.1281 for changeset 31d269fb880ef4cc0c7263f9a00c0bb1f5ac6a5a
author Bram Moolenaar <Bram@vim.org>
date Sun, 05 Feb 2023 14:15:06 +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>)