2017-06-25 18:49:18 +00:00
|
|
|
" MIT License. Copyright (c) 2013-2017 Bjorn Neergaard, w0rp
|
2016-10-10 01:27:51 +00:00
|
|
|
" vim: et ts=2 sts=2 sw=2
|
|
|
|
|
|
|
|
let s:error_symbol = get(g:, 'airline#extensions#ale#error_symbol', 'E:')
|
|
|
|
let s:warning_symbol = get(g:, 'airline#extensions#ale#warning_symbol', 'W:')
|
|
|
|
|
2017-06-27 11:52:48 +00:00
|
|
|
function! s:airline_ale_count(cnt, symbol)
|
|
|
|
return a:cnt ? a:symbol. a:cnt : ''
|
|
|
|
endfunction
|
|
|
|
|
2017-11-16 18:08:41 +00:00
|
|
|
function! s:airline_ale_get_line_number(cnt, type) abort
|
|
|
|
if a:cnt == 0
|
|
|
|
return ''
|
|
|
|
endif
|
|
|
|
|
|
|
|
let buffer = bufnr('')
|
|
|
|
let problem_type = (a:type ==# 'error') ? 'E' : 'W'
|
|
|
|
let problems = copy(ale#engine#GetLoclist(buffer))
|
|
|
|
|
|
|
|
call filter(problems, 'v:val.bufnr is buffer && v:val.type is# problem_type')
|
|
|
|
|
|
|
|
if empty(problems)
|
|
|
|
return ''
|
|
|
|
endif
|
|
|
|
|
|
|
|
let open_lnum_symbol = get(g:, 'airline#extensions#ale#open_lnum_symbol', '(L')
|
|
|
|
let close_lnum_symbol = get(g:, 'airline#extensions#ale#close_lnum_symbol', ')')
|
|
|
|
|
|
|
|
return open_lnum_symbol . problems[0].lnum . close_lnum_symbol
|
|
|
|
endfunction
|
|
|
|
|
2017-06-25 18:49:18 +00:00
|
|
|
function! airline#extensions#ale#get(type)
|
|
|
|
if !exists(':ALELint')
|
|
|
|
return ''
|
|
|
|
endif
|
|
|
|
|
2017-06-27 11:52:48 +00:00
|
|
|
let is_err = a:type ==# 'error'
|
|
|
|
let symbol = is_err ? s:error_symbol : s:warning_symbol
|
|
|
|
|
|
|
|
let is_err = a:type ==# 'error'
|
|
|
|
let counts = ale#statusline#Count(bufnr(''))
|
|
|
|
let symbol = is_err ? s:error_symbol : s:warning_symbol
|
|
|
|
|
|
|
|
if type(counts) == type({}) && has_key(counts, 'error')
|
2017-06-25 18:49:18 +00:00
|
|
|
" Use the current Dictionary format.
|
2017-06-27 11:52:48 +00:00
|
|
|
let errors = counts.error + counts.style_error
|
|
|
|
let num = is_err ? errors : counts.total - errors
|
2016-10-10 01:27:51 +00:00
|
|
|
else
|
2017-06-25 18:49:18 +00:00
|
|
|
" Use the old List format.
|
2017-06-27 11:52:48 +00:00
|
|
|
let num = is_err ? counts[0] : counts[1]
|
2016-10-10 01:27:51 +00:00
|
|
|
endif
|
|
|
|
|
2017-11-16 18:08:41 +00:00
|
|
|
return s:airline_ale_count(num, symbol) . <sid>airline_ale_get_line_number(num, a:type)
|
2016-10-10 01:27:51 +00:00
|
|
|
endfunction
|
|
|
|
|
2017-06-20 20:23:46 +00:00
|
|
|
function! airline#extensions#ale#get_warning()
|
|
|
|
return airline#extensions#ale#get('warning')
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! airline#extensions#ale#get_error()
|
|
|
|
return airline#extensions#ale#get('error')
|
|
|
|
endfunction
|
|
|
|
|
2016-10-10 01:27:51 +00:00
|
|
|
function! airline#extensions#ale#init(ext)
|
2017-06-20 20:23:46 +00:00
|
|
|
call airline#parts#define_function('ale_error_count', 'airline#extensions#ale#get_error')
|
|
|
|
call airline#parts#define_function('ale_warning_count', 'airline#extensions#ale#get_warning')
|
2017-08-26 11:00:40 +00:00
|
|
|
augroup airline_ale
|
|
|
|
autocmd!
|
|
|
|
autocmd CursorHold,BufWritePost * call <sid>ale_refresh()
|
|
|
|
augroup END
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! s:ale_refresh()
|
|
|
|
if get(g:, 'airline_skip_empty_sections', 0)
|
|
|
|
exe ':AirlineRefresh'
|
|
|
|
endif
|
2016-10-10 01:27:51 +00:00
|
|
|
endfunction
|