mirror of
https://github.com/vim-airline/vim-airline.git
synced 2024-11-26 18:31:02 +08:00
Merge pull request #1922 from petobens/master
Extend denite statusline to denite-filter buffer
This commit is contained in:
commit
3abbfabf55
|
@ -12,7 +12,7 @@ let s:denite_ver = (exists('*denite#get_status_mode') ? 2 : 3)
|
||||||
" that implements its own insert/normal mode so we have to handle changing the
|
" that implements its own insert/normal mode so we have to handle changing the
|
||||||
" highlight
|
" highlight
|
||||||
function! airline#extensions#denite#check_denite_mode(bufnr)
|
function! airline#extensions#denite#check_denite_mode(bufnr)
|
||||||
if &filetype != 'denite'
|
if &filetype !=# 'denite' || &filetype !=# 'denite-filter'
|
||||||
return ''
|
return ''
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
@ -30,7 +30,7 @@ function! airline#extensions#denite#check_denite_mode(bufnr)
|
||||||
endfunction
|
endfunction
|
||||||
|
|
||||||
function! airline#extensions#denite#apply(...)
|
function! airline#extensions#denite#apply(...)
|
||||||
if &ft == 'denite'
|
if &filetype ==# 'denite' || &filetype ==# 'denite-filter'
|
||||||
let w:airline_skip_empty_sections = 0
|
let w:airline_skip_empty_sections = 0
|
||||||
call a:1.add_section('airline_a', ' Denite %{airline#extensions#denite#check_denite_mode('.a:2['bufnr'].')}')
|
call a:1.add_section('airline_a', ' Denite %{airline#extensions#denite#check_denite_mode('.a:2['bufnr'].')}')
|
||||||
if s:denite_ver == 3
|
if s:denite_ver == 3
|
||||||
|
|
Loading…
Reference in New Issue
Block a user