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