view ci/if_ver-cmd.vim @ 23636:334012f134f8 v8.2.2360

patch 8.2.2360: test leaves file behind Commit: https://github.com/vim/vim/commit/a3b494d6afa79aedce42fa4ecc7ef0dbae79e37e Author: Bram Moolenaar <Bram@vim.org> Date: Sat Jan 16 13:43:31 2021 +0100 patch 8.2.2360: test leaves file behind Problem: Test leaves file behind. Solution: Delete the right file. (Dominique Pell?, closes https://github.com/vim/vim/issues/7689)
author Bram Moolenaar <Bram@vim.org>
date Sat, 16 Jan 2021 13:45:04 +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>)