view ci/if_ver-cmd.vim @ 23713:572b0f1c2e28 v8.2.2398

patch 8.2.2398: method test fails Commit: https://github.com/vim/vim/commit/40be52ba71b9d6a7f586b1e77db8e827ff4c0c42 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Jan 23 15:27:09 2021 +0100 patch 8.2.2398: method test fails Problem: Method test fails. Solution: Adjust test for allowed white space.
author Bram Moolenaar <Bram@vim.org>
date Sat, 23 Jan 2021 15: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>)