view ci/if_ver-cmd.vim @ 23237:033b2a97d59b v8.2.2164

patch 8.2.2164: Vim9: autoload function doesn't work in uppercased script Commit: https://github.com/vim/vim/commit/17f700ac8b55f27ddb519ecaa8acaa43fc1ae60a Author: Bram Moolenaar <Bram@vim.org> Date: Sat Dec 19 21:23:42 2020 +0100 patch 8.2.2164: Vim9: autoload function doesn't work in uppercased script Problem: Vim9: autoload function doesn't work in script that starts with an upper case letter. Solution: Check for the autoload character. (closes #7502)
author Bram Moolenaar <Bram@vim.org>
date Sat, 19 Dec 2020 21:30:03 +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>)