Whitespace fix

This commit is contained in:
Strahinja Val Markovic 2012-07-16 14:35:24 -07:00
parent fb5d25fc81
commit ae474483e7

View File

@ -154,19 +154,19 @@ function! youcompleteme#Complete(findstart, base)
return []
endif
py csystem.CandidatesForQueryAsync( vim.eval('a:base') )
py csystem.CandidatesForQueryAsync( vim.eval('a:base') )
let l:results_ready = 0
while !l:results_ready
let l:results_ready = 0
while !l:results_ready
py << EOF
results_ready = csystem.AsyncCandidateRequestReady()
if results_ready:
vim.command( 'let l:results_ready = 1' )
EOF
if complete_check()
return { 'words' : [], 'refresh' : 'always'}
endif
endwhile
if complete_check()
return { 'words' : [], 'refresh' : 'always'}
endif
endwhile
let l:results = []
py << EOF
@ -180,7 +180,7 @@ EOF
" 7.3.475. It's possible that patch 404 was the one that fixed this issue,
" but I haven't tested this assumption.
" A bug in vim causes the '.' register to break when we use set this... sigh
return { 'words' : l:results, 'refresh' : 'always'}
return { 'words' : l:results, 'refresh' : 'always'}
endif
endfunction