rename uptodate to todate status

- otherwise confusing with updated
This commit is contained in:
gmarik 2011-08-05 16:28:00 -05:00
parent a038016df3
commit 96a58d427c

View File

@ -46,7 +46,7 @@ func! s:sign(status)
return return
endif endif
let markers = {'updated': 'VuUp', 'uptodate': 'VuCu', 'error': 'VuEr', 'active': 'VuAc' } let markers = {'updated': 'VuUp', 'todate': 'VuCu', 'error': 'VuEr', 'active': 'VuAc' }
let marker = markers[a:status] let marker = markers[a:status]
exe ":sign place ".line('.')." line=".line('.')." name=". marker ." buffer=" . bufnr("%") exe ":sign place ".line('.')." line=".line('.')." name=". marker ." buffer=" . bufnr("%")
endf endf
@ -66,7 +66,7 @@ func! vundle#installer#install(bang, name) abort
if 'updated' == status if 'updated' == status
echo b.name.' installed' echo b.name.' installed'
elseif 'uptodate' == status elseif 'todate' == status
echo b.name.' already installed' echo b.name.' already installed'
elseif 'error' == status elseif 'error' == status
echohl Error echohl Error
@ -127,7 +127,7 @@ endf
func! s:sync(bang, bundle) abort func! s:sync(bang, bundle) abort
let git_dir = expand(a:bundle.path().'/.git/') let git_dir = expand(a:bundle.path().'/.git/')
if isdirectory(git_dir) if isdirectory(git_dir)
if !(a:bang) | return 'uptodate' | endif if !(a:bang) | return 'todate' | endif
let cmd = 'cd '.shellescape(a:bundle.path()).' && git pull' let cmd = 'cd '.shellescape(a:bundle.path()).' && git pull'
if (has('win32') || has('win64')) if (has('win32') || has('win64'))
@ -145,7 +145,7 @@ func! s:sync(bang, bundle) abort
end end
if out =~# 'up-to-date' if out =~# 'up-to-date'
return 'uptodate' return 'todate'
end end
return 'updated' return 'updated'