Reordering some YCM init logic

This commit is contained in:
Strahinja Val Markovic 2013-09-02 11:34:18 -07:00
parent 1d224eb8b4
commit 496fe8f7a3

View File

@ -51,6 +51,19 @@ function! youcompleteme#Enable()
return return
endif endif
call s:SetUpCpoptions()
call s:SetUpCompleteopt()
call s:SetUpKeyMappings()
call s:SetUpBackwardsCompatibility()
if g:ycm_register_as_syntastic_checker
call s:ForceSyntasticCFamilyChecker()
endif
if g:ycm_allow_changing_updatetime
set ut=2000
endif
py from ycm.youcompleteme import YouCompleteMe py from ycm.youcompleteme import YouCompleteMe
py ycm_state = YouCompleteMe() py ycm_state = YouCompleteMe()
@ -71,19 +84,6 @@ function! youcompleteme#Enable()
autocmd VimLeave * call s:OnVimLeave() autocmd VimLeave * call s:OnVimLeave()
augroup END augroup END
call s:SetUpCpoptions()
call s:SetUpCompleteopt()
call s:SetUpKeyMappings()
call s:SetUpBackwardsCompatibility()
if g:ycm_register_as_syntastic_checker
call s:ForceSyntasticCFamilyChecker()
endif
if g:ycm_allow_changing_updatetime
set ut=2000
endif
" Calling this once solves the problem of BufRead/BufEnter not triggering for " Calling this once solves the problem of BufRead/BufEnter not triggering for
" the first loaded file. This should be the last command executed in this " the first loaded file. This should be the last command executed in this
" function! " function!