view ci/if_ver-cmd.vim @ 22432:3e2826aeca3b

Added tag v8.2.1764 for changeset 685909aa564160e129e338a0e30b143963082172
author Bram Moolenaar <Bram@vim.org>
date Sun, 27 Sep 2020 21:30: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>)