2018-01-05 09:37:59 +00:00
|
|
|
" MIT License. Copyright (c) 2015-2018 Evgeny Firsov et al.
|
2015-12-26 05:10:55 +00:00
|
|
|
" vim: et ts=2 sts=2 sw=2
|
|
|
|
|
2016-09-24 00:16:30 +00:00
|
|
|
scriptencoding utf-8
|
|
|
|
|
2015-12-26 05:10:55 +00:00
|
|
|
let s:spc = g:airline_symbols.space
|
|
|
|
let s:error_symbol = get(g:, 'airline#extensions#ycm#error_symbol', 'E:')
|
|
|
|
let s:warning_symbol = get(g:, 'airline#extensions#ycm#warning_symbol', 'W:')
|
|
|
|
|
|
|
|
function! airline#extensions#ycm#init(ext)
|
|
|
|
call airline#parts#define_function('ycm_error_count', 'airline#extensions#ycm#get_error_count')
|
|
|
|
call airline#parts#define_function('ycm_warning_count', 'airline#extensions#ycm#get_warning_count')
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! airline#extensions#ycm#get_error_count()
|
2016-06-24 09:49:53 +00:00
|
|
|
if exists(':YcmDiag') && exists("*youcompleteme#GetErrorCount")
|
2015-12-26 05:10:55 +00:00
|
|
|
let cnt = youcompleteme#GetErrorCount()
|
|
|
|
|
|
|
|
if cnt != 0
|
|
|
|
return s:error_symbol.cnt
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
|
|
|
return ''
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! airline#extensions#ycm#get_warning_count()
|
2016-06-24 09:49:53 +00:00
|
|
|
if exists(':YcmDiag') && exists("*youcompleteme#GetWarningCount")
|
2015-12-26 05:10:55 +00:00
|
|
|
let cnt = youcompleteme#GetWarningCount()
|
|
|
|
|
|
|
|
if cnt != 0
|
|
|
|
return s:warning_symbol.cnt.s:spc
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
|
|
|
return ''
|
|
|
|
endfunction
|