view ci/if_ver-cmd.vim @ 31628:238f424acc6c v9.0.1146

patch 9.0.1146: MS-Windows: various special keys/modifiers are not mappable Commit: https://github.com/vim/vim/commit/c8b204952f0452fe1276d30ae6a5d38a3f421b95 Author: Christopher Plewright <chris@createng.com> Date: Wed Jan 4 18:06:00 2023 +0000 patch 9.0.1146: MS-Windows: various special keys/modifiers are not mappable Problem: MS-Windows: various special keys and modifiers are not mappable. Solution: Adjust the handling of keys with modifiers. (Christian Plewright, closes #11768)
author Bram Moolenaar <Bram@vim.org>
date Wed, 04 Jan 2023 19:15: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>)