2014-01-19 23:44:44 -05:00
|
|
|
" MIT License. Copyright (c) 2013-2014 Bailey Ling.
|
2013-08-21 11:14:12 -04:00
|
|
|
" vim: et ts=2 sts=2 sw=2
|
2013-08-06 20:17:33 -04:00
|
|
|
|
2013-08-06 21:48:00 -04:00
|
|
|
" http://got-ravings.blogspot.com/2008/10/vim-pr0n-statusline-whitespace-flags.html
|
2013-08-06 20:48:53 -04:00
|
|
|
|
2013-08-19 20:35:48 -04:00
|
|
|
" for backwards compatibility
|
|
|
|
if exists('g:airline_detect_whitespace')
|
|
|
|
let s:show_message = g:airline_detect_whitespace == 1
|
|
|
|
else
|
|
|
|
let s:show_message = get(g:, 'airline#extensions#whitespace#show_message', 1)
|
|
|
|
endif
|
|
|
|
|
2013-08-27 10:12:03 -04:00
|
|
|
let s:symbol = get(g:, 'airline#extensions#whitespace#symbol', g:airline_symbols.whitespace)
|
2013-11-03 14:03:36 -05:00
|
|
|
let s:default_checks = ['indent', 'trailing']
|
2013-08-19 14:19:26 -04:00
|
|
|
|
2013-08-25 22:08:04 -04:00
|
|
|
let s:trailing_format = get(g:, 'airline#extensions#whitespace#trailing_format', 'trailing[%s]')
|
|
|
|
let s:mixed_indent_format = get(g:, 'airline#extensions#whitespace#mixed_indent_format', 'mixed-indent[%s]')
|
|
|
|
|
2013-12-13 16:38:32 -05:00
|
|
|
let s:max_lines = get(g:, 'airline#extensions#whitespace#max_lines', 20000)
|
|
|
|
|
2013-08-19 20:35:48 -04:00
|
|
|
let s:enabled = 1
|
2013-08-10 09:09:52 -04:00
|
|
|
|
2013-08-06 21:48:00 -04:00
|
|
|
function! airline#extensions#whitespace#check()
|
2013-12-13 16:38:32 -05:00
|
|
|
if &readonly || !&modifiable || !s:enabled || line('$') > s:max_lines
|
2013-08-06 22:29:03 -04:00
|
|
|
return ''
|
|
|
|
endif
|
|
|
|
|
2013-08-06 21:48:00 -04:00
|
|
|
if !exists('b:airline_whitespace_check')
|
|
|
|
let b:airline_whitespace_check = ''
|
2013-11-03 14:03:36 -05:00
|
|
|
let checks = get(g:, 'airline#extensions#whitespace#checks', s:default_checks)
|
2013-08-19 14:19:26 -04:00
|
|
|
|
|
|
|
let trailing = 0
|
2013-11-03 14:03:36 -05:00
|
|
|
if index(checks, 'trailing') > -1
|
2013-08-19 14:19:26 -04:00
|
|
|
let trailing = search(' $', 'nw')
|
|
|
|
endif
|
|
|
|
|
|
|
|
let mixed = 0
|
2013-11-03 14:03:36 -05:00
|
|
|
if index(checks, 'indent') > -1
|
2013-09-04 14:10:45 -04:00
|
|
|
let indents = [search('^ \{2,}', 'nb'), search('^ \{2,}', 'n'), search('^\t', 'nb'), search('^\t', 'n')]
|
2013-08-19 14:19:26 -04:00
|
|
|
let mixed = indents[0] != 0 && indents[1] != 0 && indents[2] != 0 && indents[3] != 0
|
|
|
|
endif
|
2013-08-06 20:48:53 -04:00
|
|
|
|
2013-08-06 22:02:53 -04:00
|
|
|
if trailing != 0 || mixed
|
2013-09-11 17:01:25 -04:00
|
|
|
let b:airline_whitespace_check = s:symbol
|
2013-08-19 20:35:48 -04:00
|
|
|
if s:show_message
|
2013-08-06 22:02:53 -04:00
|
|
|
if trailing != 0
|
2013-09-22 11:29:27 -04:00
|
|
|
let b:airline_whitespace_check .= (g:airline_symbols.space).printf(s:trailing_format, trailing)
|
2013-08-06 21:48:00 -04:00
|
|
|
endif
|
|
|
|
if mixed
|
2013-08-09 20:23:03 -04:00
|
|
|
let mixnr = indents[0] == indents[1] ? indents[0] : indents[2]
|
2013-09-22 11:29:27 -04:00
|
|
|
let b:airline_whitespace_check .= (g:airline_symbols.space).printf(s:mixed_indent_format, mixnr)
|
2013-08-06 21:48:00 -04:00
|
|
|
endif
|
2013-08-06 20:48:53 -04:00
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endif
|
2013-08-06 21:48:00 -04:00
|
|
|
return b:airline_whitespace_check
|
2013-08-06 20:48:53 -04:00
|
|
|
endfunction!
|
|
|
|
|
2013-08-08 10:42:27 -04:00
|
|
|
function! airline#extensions#whitespace#toggle()
|
2013-08-19 20:35:48 -04:00
|
|
|
if s:enabled
|
2013-08-08 10:42:27 -04:00
|
|
|
autocmd! airline_whitespace CursorHold,BufWritePost
|
2013-08-30 20:57:34 -04:00
|
|
|
augroup! airline_whitespace
|
2013-08-19 20:35:48 -04:00
|
|
|
let s:enabled = 0
|
2013-08-10 09:09:52 -04:00
|
|
|
else
|
|
|
|
call airline#extensions#whitespace#init()
|
2013-08-19 20:35:48 -04:00
|
|
|
let s:enabled = 1
|
2013-08-08 10:42:27 -04:00
|
|
|
endif
|
2013-08-27 22:36:12 -04:00
|
|
|
echo 'Whitespace checking: '.(s:enabled ? 'Enabled' : 'Disabled')
|
2013-08-08 10:42:27 -04:00
|
|
|
endfunction
|
|
|
|
|
2013-08-23 12:42:55 -04:00
|
|
|
function! airline#extensions#whitespace#init(...)
|
2013-08-30 18:07:45 -04:00
|
|
|
call airline#parts#define_function('whitespace', 'airline#extensions#whitespace#check')
|
2013-08-06 21:48:00 -04:00
|
|
|
|
2013-08-19 20:35:48 -04:00
|
|
|
unlet! b:airline_whitespace_check
|
2013-08-06 21:48:00 -04:00
|
|
|
augroup airline_whitespace
|
|
|
|
autocmd!
|
|
|
|
autocmd CursorHold,BufWritePost * unlet! b:airline_whitespace_check
|
|
|
|
augroup END
|
2013-08-06 20:17:33 -04:00
|
|
|
endfunction
|
2013-08-06 20:48:53 -04:00
|
|
|
|