2013-08-07 00:17:33 +00:00
|
|
|
" MIT license. Copyright (c) 2013 Bailey Ling.
|
|
|
|
" vim: ts=2 sts=2 sw=2 fdm=indent
|
|
|
|
|
2013-08-07 01:48:00 +00:00
|
|
|
" http://got-ravings.blogspot.com/2008/10/vim-pr0n-statusline-whitespace-flags.html
|
2013-08-07 00:48:53 +00:00
|
|
|
|
2013-08-07 01:48:00 +00:00
|
|
|
function! airline#extensions#whitespace#check()
|
|
|
|
if !exists('b:airline_whitespace_check')
|
|
|
|
let b:airline_whitespace_check = ''
|
2013-08-07 02:02:53 +00:00
|
|
|
let trailing = search(' $', 'nw')
|
2013-08-07 01:48:00 +00:00
|
|
|
let mixed = search('^ ', 'nw') != 0 && search('^\t', 'nw') != 0
|
2013-08-07 00:48:53 +00:00
|
|
|
|
2013-08-07 02:02:53 +00:00
|
|
|
if trailing != 0 || mixed
|
2013-08-07 01:48:00 +00:00
|
|
|
let b:airline_whitespace_check = g:airline_whitespace_symbol." "
|
|
|
|
if g:airline_detect_whitespace == 1
|
2013-08-07 02:02:53 +00:00
|
|
|
if trailing != 0
|
|
|
|
let b:airline_whitespace_check .= 'trailing['.trailing.']'
|
2013-08-07 01:48:00 +00:00
|
|
|
endif
|
|
|
|
if mixed
|
|
|
|
let b:airline_whitespace_check .= 'mixed-indent '
|
|
|
|
endif
|
2013-08-07 00:48:53 +00:00
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endif
|
2013-08-07 01:48:00 +00:00
|
|
|
return b:airline_whitespace_check
|
2013-08-07 00:48:53 +00:00
|
|
|
endfunction!
|
|
|
|
|
|
|
|
function! airline#extensions#whitespace#apply()
|
|
|
|
if exists('w:airline_active') && w:airline_active
|
2013-08-07 01:48:00 +00:00
|
|
|
if !exists('w:airline_section_warning')
|
|
|
|
let w:airline_section_warning = ' '
|
|
|
|
endif
|
|
|
|
let w:airline_section_warning .= '%{airline#extensions#whitespace#check()}'
|
2013-08-07 00:48:53 +00:00
|
|
|
endif
|
2013-08-07 00:17:33 +00:00
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! airline#extensions#whitespace#init(ext)
|
2013-08-07 00:48:53 +00:00
|
|
|
call a:ext.add_statusline_funcref(function('airline#extensions#whitespace#apply'))
|
2013-08-07 01:48:00 +00:00
|
|
|
|
|
|
|
augroup airline_whitespace
|
|
|
|
autocmd!
|
|
|
|
autocmd CursorHold,BufWritePost * unlet! b:airline_whitespace_check
|
|
|
|
augroup END
|
2013-08-07 00:17:33 +00:00
|
|
|
endfunction
|
2013-08-07 00:48:53 +00:00
|
|
|
|