view ci/if_ver-cmd.vim @ 29161:198a44d40394 v8.2.5100

patch 8.2.5100: memory usage tests are not retried Commit: https://github.com/vim/vim/commit/dad5d2f87b867dab48ac265e3d978d86f0541493 Author: Bram Moolenaar <Bram@vim.org> Date: Wed Jun 15 18:08:42 2022 +0100 patch 8.2.5100: memory usage tests are not retried Problem: Memory usage tests are not retried. Solution: Mark memory usage tests as flaky.
author Bram Moolenaar <Bram@vim.org>
date Wed, 15 Jun 2022 19:15:03 +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>)