Don't run the plugin when in diff mode

This commit is contained in:
Strahinja Val Markovic 2012-07-29 22:09:06 -07:00
parent 333b71f8d5
commit a6d5979b08

View File

@ -27,6 +27,11 @@ let s:completion_start_column = 0
let s:omnifunc_mode = 0 let s:omnifunc_mode = 0
function! youcompleteme#Enable() function! youcompleteme#Enable()
" When vim is in diff mode, don't run
if &diff
return
endif
" 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
if get( g:ycm_filetypes_to_ignore, &filetype, 0 ) if get( g:ycm_filetypes_to_ignore, &filetype, 0 )