Merge pull request #902 from efirs/ef_ycm_error_warning_count

Show YouCompleteMe error and warning count in the statusline
This commit is contained in:
Christian Brabandt
2016-01-28 10:11:37 +01:00
7 changed files with 67 additions and 9 deletions

View File

@@ -37,7 +37,10 @@ endfunction
function! airline#themes#patch(palette)
for mode in keys(a:palette)
if !has_key(a:palette[mode], 'airline_warning')
let a:palette[mode]['airline_warning'] = [ '#000000', '#df5f00', 232, 166 ]
let a:palette[mode]['airline_warning'] = [ '#000000', '#df5f00', 232, 190 ]
endif
if !has_key(a:palette[mode], 'airline_error')
let a:palette[mode]['airline_error'] = [ '#000000', '#df5f00', 232, 160 ]
endif
endfor