Gitiles
Code Review
Sign In
gerrit.omnirom.org
/
android_external_vim
/
f15c8b6eb32fcfea88fd9ca42ef87bbee2c8fe2b
/
.
/
ci
/
if_ver-cmd.vim
blob: ac5d82a054b51585e5a93570b9b4d2b9c1e688d4 [
file
] [
log
] [
blame
]
" 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>)