view ci/if_ver-cmd.vim @ 22228:222f8e19ed01 v8.2.1663

patch 8.2.1663: options window entries cannot be translated Commit: https://github.com/vim/vim/commit/14944c04bd15f3bc67a6665d7234e44bd77b495d Author: Bram Moolenaar <Bram@vim.org> Date: Fri Sep 11 20:51:26 2020 +0200 patch 8.2.1663: options window entries cannot be translated Problem: Options window entries cannot be translated. Solution: Use AddOption() for all explanations. (closes https://github.com/vim/vim/issues/6800)
author Bram Moolenaar <Bram@vim.org>
date Fri, 11 Sep 2020 21: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>)