whitespace: Allow to disable individual whitespace checks per filetype

closes #1716
This commit is contained in:
Christian Brabandt
2018-04-27 08:25:49 +02:00
parent c4a4a20b8d
commit 33310c5b24
2 changed files with 13 additions and 3 deletions

View File

@@ -670,6 +670,14 @@ eclim <https://eclim.org>
" then whitespace checking will be disabled for that buffer; for example:
" let b:airline_whitespace_disabled = 1
<
* disable specific whitespace checks for individual filetypes >
" The global variable g:airline#extensions#whitespace#skip_indent_check_ft
" defines what whitespaces checks to skip per filetype.
" the list can contain any of the available checks,
" (see above at g:airline#extensions#whitespace#checks)
" To disable mixed-indent-file for go files use:
let g:airline#extensions#whitespace#skip_indent_check_ft = {'go': ['mixed-indent-file']}
<
------------------------------------- *airline-tabline*
Note: If you're using the ctrlspace tabline only the option marked with (c)
are supported!