view ci/if_ver-cmd.vim @ 33884:3d0544e31ca5 v9.0.2151

patch 9.0.2151: 'breakindent' is not drawn after diff filler lines Commit: https://github.com/vim/vim/commit/588f20decebebedba3ad733f4f443a597e9747c3 Author: zeertzjq <zeertzjq@outlook.com> Date: Tue Dec 5 15:47:09 2023 +0100 patch 9.0.2151: 'breakindent' is not drawn after diff filler lines Problem: 'breakindent' is not drawn after diff filler lines. Solution: Correct check for whether 'breakindent' should be drawn. closes: #13624 Signed-off-by: zeertzjq <zeertzjq@outlook.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
author Christian Brabandt <cb@256bit.org>
date Sun, 10 Dec 2023 15:16:21 +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>)