Merge pull request #1200 from chrisbra/width
limit whitespace check output for smaller screens
This commit is contained in:
commit
fbfea6daee
|
@ -106,7 +106,12 @@ function! airline#extensions#whitespace#check()
|
|||
endif
|
||||
endif
|
||||
endif
|
||||
return b:airline_whitespace_check
|
||||
if winwidth(0) < 120 && len(split(b:airline_whitespace_check, '\zs')) > 9
|
||||
return matchstr(b:airline_whitespace_check, '^.\{9\}').'…'
|
||||
else
|
||||
return b:airline_whitespace_check
|
||||
endif
|
||||
|
||||
endfunction
|
||||
|
||||
function! airline#extensions#whitespace#toggle()
|
||||
|
|
Loading…
Reference in New Issue