Auto merge of #1542 - vheon:fix-completer-available, r=Valloric
Fix check condition for setting omnifunction I had the check for the omnifunc set backwards. I will start to see if we can start testing the vimscript layer as well. I have signed the CLA.
This commit is contained in:
commit
a24cc3c662
@ -508,7 +508,7 @@ function! s:OnInsertEnter()
|
||||
return
|
||||
endif
|
||||
|
||||
if get( b:, 'ycm_omnicomplete', 0 )
|
||||
if !get( b:, 'ycm_omnicomplete', 0 )
|
||||
let b:ycm_omnicomplete = 1
|
||||
call s:SetOmnicompleteFunc()
|
||||
endif
|
||||
|
Loading…
Reference in New Issue
Block a user