view ci/if_ver-cmd.vim @ 21012:380923b96878 v8.2.1057

patch 8.2.1057: cannot build with dynamic Lua Commit: https://github.com/vim/vim/commit/1e4c7d0ed272201fa3a7cf34a462abb139170759 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Jun 25 20:56:42 2020 +0200 patch 8.2.1057: cannot build with dynamic Lua Problem: Cannot build with dynamic Lua. Solution: Add dll variables.
author Bram Moolenaar <Bram@vim.org>
date Thu, 25 Jun 2020 21:00:18 +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>)