if exists('g:loaded_rust_vim_plugin_cargo') finish endif let g:loaded_rust_vim_plugin_cargo = 1 let s:save_cpo = &cpoptions set cpoptions&vim command! -nargs=+ Cargo call cargo#cmd() command! -nargs=* Cbuild call cargo#build() command! -nargs=* Ccheck call cargo#check() command! -nargs=* Cclean call cargo#clean() command! -nargs=* Cdoc call cargo#doc() command! -nargs=+ Cnew call cargo#new() command! -nargs=* Cinit call cargo#init() command! -nargs=* Crun call cargo#run() command! -nargs=* Ctest call cargo#test() command! -nargs=* Cbench call cargo#bench() command! -nargs=* Cupdate call cargo#update() command! -nargs=* Csearch call cargo#search() command! -nargs=* Cpublish call cargo#publish() command! -nargs=* Cinstall call cargo#install() command! -nargs=* Cruntarget call cargo#runtarget() let &cpoptions = s:save_cpo unlet s:save_cpo " vim: set et sw=4 sts=4 ts=8: