2016-01-14 21:38:38 -05:00
|
|
|
" MIT License. Copyright (c) 2013-2016 Bailey Ling.
|
2013-08-21 11:14:12 -04:00
|
|
|
" vim: et ts=2 sts=2 sw=2
|
2013-08-05 20:29:30 -04:00
|
|
|
|
2016-09-23 20:16:30 -04:00
|
|
|
scriptencoding utf-8
|
|
|
|
|
2013-09-10 11:37:25 -04:00
|
|
|
if !exists('*bufferline#get_status_string')
|
|
|
|
finish
|
|
|
|
endif
|
|
|
|
|
2013-08-28 08:21:32 -04:00
|
|
|
let s:overwrite = get(g:, 'airline#extensions#bufferline#overwrite_variables', 1)
|
|
|
|
|
2013-08-05 22:44:34 -04:00
|
|
|
function! airline#extensions#bufferline#init(ext)
|
2013-08-28 08:21:32 -04: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 11:29:27 -04:00
|
|
|
let g:bufferline_separator = g:airline_symbols.space
|
2013-08-28 08:21:32 -04:00
|
|
|
endif
|
2013-08-05 22:44:34 -04:00
|
|
|
|
2013-08-30 17:51:10 -04:00
|
|
|
call airline#parts#define_raw('file', '%{bufferline#refresh_status()}'.bufferline#get_status_string())
|
2013-08-05 20:29:30 -04:00
|
|
|
endfunction
|
2013-08-30 17:51:10 -04:00
|
|
|
|