view ci/if_ver-cmd.vim @ 29656:4ae2a5b3cb04

Added tag v9.0.0168 for changeset 53e434838a85f6b835a75d8f38bfd2cf6728a32c
author Bram Moolenaar <Bram@vim.org>
date Mon, 08 Aug 2022 12:15:08 +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>)