Fixing YCM breakage

VimScript is not Python so "!some_string" does not return false when some_string
is not empty (it _does_ return true when some_string _is_ empty). I of course
know this, but my fingers like to forget it from time to time.
This commit is contained in:
Strahinja Val Markovic 2013-03-09 09:47:35 -08:00
parent 81444e207c
commit 82bd32aa16

View File

@ -136,12 +136,10 @@ endfunction
function! s:AllowedToCompleteInCurrentFile() function! s:AllowedToCompleteInCurrentFile()
let current_filetype = &filetype
if !current_filetype
return 0
" If the user set the current filetype as a filetype that YCM should ignore, " If the user set the current filetype as a filetype that YCM should ignore,
" then we don't do anything " then we don't do anything
return !get( g:ycm_filetypes_to_completely_ignore, current_filetype, 0 ) return !empty( &filetype ) &&
\ !get( g:ycm_filetypes_to_completely_ignore, &filetype, 0 )
endfunction endfunction