2015-02-13 23:46:23 +00:00
|
|
|
" MIT License. Copyright (c) 2013-2015 Bailey Ling.
|
2013-08-21 15:14:12 +00:00
|
|
|
" vim: et ts=2 sts=2 sw=2
|
2013-08-06 00:29:30 +00:00
|
|
|
|
2013-09-10 15:37:25 +00:00
|
|
|
if !exists('*bufferline#get_status_string')
|
|
|
|
finish
|
|
|
|
endif
|
|
|
|
|
2013-08-28 12:21:32 +00:00
|
|
|
let s:overwrite = get(g:, 'airline#extensions#bufferline#overwrite_variables', 1)
|
|
|
|
|
2013-08-06 02:44:34 +00:00
|
|
|
function! airline#extensions#bufferline#init(ext)
|
2013-08-28 12:21:32 +00:00
|
|
|
if s:overwrite
|
|
|
|
highlight bufferline_selected gui=bold cterm=bold term=bold
|
|
|
|
highlight link bufferline_selected_inactive airline_c_inactive
|
|
|
|
let g:bufferline_inactive_highlight = 'airline_c'
|
|
|
|
let g:bufferline_active_highlight = 'bufferline_selected'
|
|
|
|
let g:bufferline_active_buffer_left = ''
|
|
|
|
let g:bufferline_active_buffer_right = ''
|
2013-09-22 15:29:27 +00:00
|
|
|
let g:bufferline_separator = g:airline_symbols.space
|
2013-08-28 12:21:32 +00:00
|
|
|
endif
|
2013-08-06 02:44:34 +00:00
|
|
|
|
2013-08-30 21:51:10 +00:00
|
|
|
call airline#parts#define_raw('file', '%{bufferline#refresh_status()}'.bufferline#get_status_string())
|
2013-08-06 00:29:30 +00:00
|
|
|
endfunction
|
2013-08-30 21:51:10 +00:00
|
|
|
|