view ci/if_ver-cmd.vim @ 22372:506ab8704369

Added tag v8.2.1734 for changeset 15003353a4647e60022bd065b2c10710d33a2808
author Bram Moolenaar <Bram@vim.org>
date Wed, 23 Sep 2020 22:00:07 +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>)