view ci/if_ver-cmd.vim @ 29610:b48008f62743

Added tag v9.0.0145 for changeset e1c370197030cc0f0bc853c702b43797c8b81a8c
author Bram Moolenaar <Bram@vim.org>
date Fri, 05 Aug 2022 21:00:04 +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>)