view ci/if_ver-cmd.vim @ 36017:2ce38720e556

runtime(man): Fix <Plug>ManBS Commit: https://github.com/vim/vim/commit/1c4f40213bbb848091dcacd7c5b34f6a45e341a7 Author: Luca Saccarola <github.e41mv@aleeas.com> Date: Thu Aug 22 21:16:25 2024 +0200 runtime(man): Fix <Plug>ManBS This change does 2 things: - make sure the mapping <Plug>ManBS sets the buffer to modified to avoid a potential error message - remove commented q mapping fixes #15538 closes: #15547 Signed-off-by: Luca Saccarola <github.e41mv@aleeas.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
author Christian Brabandt <cb@256bit.org>
date Thu, 22 Aug 2024 21:30: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>)