view ci/if_ver-cmd.vim @ 23382:7d6bffda5b6b v8.2.2234

patch 8.2.2234: command line wildmenu test often fails with Unix GUI Commit: https://github.com/vim/vim/commit/3e112acc220dcacb58d77edca71910a532fffd0f Author: Bram Moolenaar <Bram@vim.org> Date: Mon Dec 28 13:41:53 2020 +0100 patch 8.2.2234: command line wildmenu test often fails with Unix GUI Problem: Command line wildmenu test often fails with Unix GUI. Solution: Skip the test where it is expected to fail.
author Bram Moolenaar <Bram@vim.org>
date Mon, 28 Dec 2020 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>)