Fix large file message appearing twice

Use PostVimMessage to avoid "Press ENTER or type command to continue"
message.
This commit is contained in:
micbou 2016-12-31 09:51:10 +01:00
parent 8161d35030
commit c394895c4e
No known key found for this signature in database
GPG Key ID: C7E8FD1F3BDA1E05

View File

@ -431,13 +431,16 @@ endfunction
function! s:DisableOnLargeFile( filename )
if exists( 'b:ycm_largefile' )
return
endif
let threshold = g:ycm_disable_for_files_larger_than_kb * 1024
if threshold > 0 && getfsize( a:filename ) > threshold
echohl WarningMsg |
\ echomsg "YouCompleteMe is disabled in this buffer; " .
\ "the file exceeded the max size (see YCM options)." |
\ echohl None
exec s:python_command "vimsupport.PostVimMessage("
\ "'YouCompleteMe is disabled in this buffer;"
\ "the file exceeded the max size (see YCM options).')"
let b:ycm_largefile = 1
endif
endfunction