mirror of
https://github.com/amix/vimrc
synced 2025-06-16 01:25:00 +08:00
Updated plugins
This commit is contained in:
49
sources_non_forked/lightline-ale/autoload/lightline/ale.vim
Normal file
49
sources_non_forked/lightline-ale/autoload/lightline/ale.vim
Normal file
@ -0,0 +1,49 @@
|
||||
let s:indicator_warnings = get(g:, 'lightline#ale#indicator_warnings', 'W: ')
|
||||
let s:indicator_errors = get(g:, 'lightline#ale#indicator_errors', 'E: ')
|
||||
let s:indicator_ok = get(g:, 'lightline#ale#indicator_ok', 'OK')
|
||||
let s:indicator_checking = get(g:, 'lightline#ale#indicator_checking', 'Linting...')
|
||||
|
||||
|
||||
""""""""""""""""""""""
|
||||
" Lightline components
|
||||
|
||||
function! lightline#ale#warnings() abort
|
||||
if !lightline#ale#linted()
|
||||
return ''
|
||||
endif
|
||||
let l:counts = ale#statusline#Count(bufnr(''))
|
||||
let l:all_errors = l:counts.error + l:counts.style_error
|
||||
let l:all_non_errors = l:counts.total - l:all_errors
|
||||
return l:all_non_errors == 0 ? '' : printf(s:indicator_warnings . '%d', all_non_errors)
|
||||
endfunction
|
||||
|
||||
function! lightline#ale#errors() abort
|
||||
if !lightline#ale#linted()
|
||||
return ''
|
||||
endif
|
||||
let l:counts = ale#statusline#Count(bufnr(''))
|
||||
let l:all_errors = l:counts.error + l:counts.style_error
|
||||
return l:all_errors == 0 ? '' : printf(s:indicator_errors . '%d', all_errors)
|
||||
endfunction
|
||||
|
||||
function! lightline#ale#ok() abort
|
||||
if !lightline#ale#linted()
|
||||
return ''
|
||||
endif
|
||||
let l:counts = ale#statusline#Count(bufnr(''))
|
||||
return l:counts.total == 0 ? s:indicator_ok : ''
|
||||
endfunction
|
||||
|
||||
function! lightline#ale#checking() abort
|
||||
return ale#engine#IsCheckingBuffer(bufnr('')) ? s:indicator_checking : ''
|
||||
endfunction
|
||||
|
||||
|
||||
""""""""""""""""""
|
||||
" Helper functions
|
||||
|
||||
function! lightline#ale#linted() abort
|
||||
return get(g:, 'ale_enabled', 0) == 1
|
||||
\ && getbufvar(bufnr(''), 'ale_linted', 0) > 0
|
||||
\ && ale#engine#IsCheckingBuffer(bufnr('')) == 0
|
||||
endfunction
|
Reference in New Issue
Block a user