view ci/if_ver-cmd.vim @ 19464:f26f4ce18b1a

Added tag v8.2.0289 for changeset 798fce18d0491b5bf82097cbbe4ad35974e714bc
author Bram Moolenaar <Bram@vim.org>
date Thu, 20 Feb 2020 22:30:05 +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>)