Merge pull request #1717 from iroedius/disable-trailing-check

allow to also disable trailing whitespace check per filetype
This commit is contained in:
Christian Brabandt 2018-04-28 09:16:32 +02:00 committed by GitHub
commit 5a065e8b82
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -61,7 +61,8 @@ function! airline#extensions#whitespace#check()
let checks = get(b:, 'airline_whitespace_checks', get(g:, 'airline#extensions#whitespace#checks', s:default_checks))
let trailing = 0
if index(checks, 'trailing') > -1
let check = 'trailing'
if index(checks, check) > -1 && index(get(skip_check_ft, &ft, []), check) < 0
try
let regexp = get(g:, 'airline#extensions#whitespace#trailing_regexp', '\s$')
let trailing = search(regexp, 'nw')