mirror of
https://github.com/vim-airline/vim-airline.git
synced 2024-11-23 03:18:56 +08:00
Disable white space detection for unmodifiable buffers
This commit is contained in:
parent
3f67df6440
commit
e117af9dd0
|
@ -19,7 +19,7 @@ let s:mixed_indent_format = get(g:, 'airline#extensions#whitespace#mixed_indent_
|
|||
let s:enabled = 1
|
||||
|
||||
function! airline#extensions#whitespace#check()
|
||||
if &readonly || !s:enabled
|
||||
if &readonly || !&modifiable || !s:enabled
|
||||
return ''
|
||||
endif
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user