view ci/if_ver-cmd.vim @ 29140:c6c93dd88e98 v8.2.5090

patch 8.2.5090: MS-Windows: vim.def is no longer used Commit: https://github.com/vim/vim/commit/831d6d4c02ca629e7e7a28537fd9048351e5db5c Author: K.Takata <kentkt@csc.jp> Date: Tue Jun 14 13:58:29 2022 +0100 patch 8.2.5090: MS-Windows: vim.def is no longer used Problem: MS-Windows: vim.def is no longer used. Solution: Delete vim.def. (Ken Takata, closes https://github.com/vim/vim/issues/10569)
author Bram Moolenaar <Bram@vim.org>
date Tue, 14 Jun 2022 15:00:04 +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>)