view ci/if_ver-cmd.vim @ 20931:2351948e193d v8.2.1017

patch 8.2.1017: Appveyor output doesn't show MinGW console features Commit: https://github.com/vim/vim/commit/1089374130862e5c19745d3ff4314f0c5690baf1 Author: Bram Moolenaar <Bram@vim.org> Date: Fri Jun 19 22:37:47 2020 +0200 patch 8.2.1017: Appveyor output doesn't show MinGW console features Problem: Appveyor output doesn't show MinGW console features. Solution: List the features of the console build.
author Bram Moolenaar <Bram@vim.org>
date Fri, 19 Jun 2020 22:45:05 +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>)