mirror of
https://github.com/vim-airline/vim-airline.git
synced 2024-11-22 22:08:50 +08:00
Add a function to disable whitespace-detection
Useful to call for particular file types (e.g., .tex files): ftplugin/tex.vim: call airline#extensions#whitespace#disable()
This commit is contained in:
parent
7e6986651c
commit
3c6135d75f
|
@ -139,6 +139,12 @@ function! airline#extensions#whitespace#toggle()
|
||||||
echo 'Whitespace checking: '.(s:enabled ? 'Enabled' : 'Disabled')
|
echo 'Whitespace checking: '.(s:enabled ? 'Enabled' : 'Disabled')
|
||||||
endfunction
|
endfunction
|
||||||
|
|
||||||
|
function! airline#extensions#whitespace#disable()
|
||||||
|
if s:enabled
|
||||||
|
call airline#extensions#whitespace#toggle()
|
||||||
|
endif
|
||||||
|
endfunction
|
||||||
|
|
||||||
function! airline#extensions#whitespace#init(...)
|
function! airline#extensions#whitespace#init(...)
|
||||||
call airline#parts#define_function('whitespace', 'airline#extensions#whitespace#check')
|
call airline#parts#define_function('whitespace', 'airline#extensions#whitespace#check')
|
||||||
|
|
||||||
|
|
|
@ -489,6 +489,10 @@ eclim <https://eclim.org>
|
||||||
* enable/disable detection of whitespace errors. >
|
* enable/disable detection of whitespace errors. >
|
||||||
let g:airline#extensions#whitespace#enabled = 1
|
let g:airline#extensions#whitespace#enabled = 1
|
||||||
<
|
<
|
||||||
|
* disable detection of whitespace errors. >
|
||||||
|
" useful to call for particular file types (e.g., in "ftplugin/*")
|
||||||
|
silent! call airline#extensions#whitespace#disable
|
||||||
|
<
|
||||||
* customize the type of mixed indent checking to perform. >
|
* customize the type of mixed indent checking to perform. >
|
||||||
" must be all spaces or all tabs before the first non-whitespace character
|
" must be all spaces or all tabs before the first non-whitespace character
|
||||||
let g:airline#extensions#whitespace#mixed_indent_algo = 0 (default)
|
let g:airline#extensions#whitespace#mixed_indent_algo = 0 (default)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user