Mercurial > vim
view ci/if_ver-cmd.vim @ 31969:39d6012603df
Added tag v9.0.1316 for changeset aa38648a8c4eb14e8c450efe4ab4c497db7258c8
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Fri, 17 Feb 2023 21:15: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>)