Mercurial > vim
view ci/if_ver-cmd.vim @ 25590:db8dfe879ef8
Added tag v8.2.3331 for changeset 50f8204eb8f7c083518b1a95facef204417dd3ff
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Wed, 11 Aug 2021 17:15:06 +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>)