2013-08-06 00:29:30 +00:00
|
|
|
" MIT license. Copyright (c) 2013 Bailey Ling.
|
|
|
|
" vim: ts=2 sts=2 sw=2 fdm=indent
|
|
|
|
|
2013-08-06 02:44:34 +00:00
|
|
|
function! airline#extensions#bufferline#apply()
|
2013-08-06 03:33:25 +00:00
|
|
|
if exists('w:airline_left_only')
|
|
|
|
return
|
|
|
|
endif
|
2013-08-06 02:44:34 +00:00
|
|
|
let w:airline_section_c = '%{bufferline#refresh_status()}'.bufferline#get_status_string()
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! airline#extensions#bufferline#init(ext)
|
2013-08-06 00:29:30 +00:00
|
|
|
highlight AlBl_active gui=bold cterm=bold term=bold
|
|
|
|
highlight link AlBl_inactive Al6
|
|
|
|
let g:bufferline_inactive_highlight = 'AlBl_inactive'
|
|
|
|
let g:bufferline_active_highlight = 'AlBl_active'
|
|
|
|
let g:bufferline_active_buffer_left = ''
|
|
|
|
let g:bufferline_active_buffer_right = ''
|
|
|
|
let g:bufferline_separator = ' '
|
2013-08-06 02:44:34 +00:00
|
|
|
|
2013-08-06 02:56:30 +00:00
|
|
|
call a:ext.add_statusline_funcref(function('airline#extensions#bufferline#apply'))
|
2013-08-06 00:29:30 +00:00
|
|
|
endfunction
|