view ci/if_ver-cmd.vim @ 23762:0f89d58eb3e3 v8.2.2422

patch 8.2.2422: crash when deleting with line number out of range Commit: https://github.com/vim/vim/commit/1d859e24218635c57c09801840ff159cb845ae6a Author: Bram Moolenaar <Bram@vim.org> Date: Thu Jan 28 17:24:58 2021 +0100 patch 8.2.2422: crash when deleting with line number out of range Problem: Crash when deleting with line number out of range. (Houyunsong) Solution: Avoid using a negative line number.
author Bram Moolenaar <Bram@vim.org>
date Thu, 28 Jan 2021 17:30:04 +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>)