view ci/if_ver-cmd.vim @ 22490:23a5977d7211 v8.2.1793

patch 8.2.1793: not consistently giving the "is a directory" warning Commit: https://github.com/vim/vim/commit/c8fe645c198e2ca55c4e3446efbbdb9b995c63ce Author: Bram Moolenaar <Bram@vim.org> Date: Sat Oct 3 17:04:37 2020 +0200 patch 8.2.1793: not consistently giving the "is a directory" warning Problem: Not consistently giving the "is a directory" warning. Solution: Adjust check for illegal file name and directory. (Yasuhiro Matsumoto, closes #7067)
author Bram Moolenaar <Bram@vim.org>
date Sat, 03 Oct 2020 17:15:03 +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>)