Skip to content

Commit 57f0e8a

Browse files
committed
Merge pull request bling#31 from orlp/master
Prevent overwriting Unite status.
2 parents c595cbb + 0d29693 commit 57f0e8a

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

autoload/bufferline.vim

+4
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,10 @@ function! bufferline#get_echo_string()
7676
endfunction
7777

7878
function! s:echo()
79+
if &filetype ==# 'unite'
80+
return
81+
endif
82+
7983
let line = bufferline#get_echo_string()
8084

8185
" 12 is magical and is the threshold for when it doesn't wrap text anymore

0 commit comments

Comments
 (0)