David Blume's GitList
Repositories
dotfiles.git
Code
Commits
Branches
Tags
Search
Tree:
2c4452d
Branches
Tags
main
pathogen
remove-vim-airline
vim-airline-disabled
vim-powerline
dotfiles.git
.vim
pack
plugins
start
vim-airline
autoload
airline
extensions
bufferline.vim
Remove pathgen and use native vim packages. https://micro.quietmisdreavus.net/code/2020/03/15/vim8-packages/
David Blume
commited
2c4452d
at 2021-03-11 19:45:57
bufferline.vim
Blame
History
Raw
" MIT License. Copyright (c) 2013-2018 Bailey Ling et al. " vim: et ts=2 sts=2 sw=2 scriptencoding utf-8 if !exists('*bufferline#get_status_string') finish endif let s:overwrite = get(g:, 'airline#extensions#bufferline#overwrite_variables', 1) function! airline#extensions#bufferline#init(ext) 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 = '' let g:bufferline_separator = g:airline_symbols.space endif if exists("+autochdir") && &autochdir == 1 " if 'acd' is set, vim-airline uses the path section, so we need ot redefine this here as well call airline#parts#define_raw('path', '%{bufferline#refresh_status()}'.bufferline#get_status_string()) else call airline#parts#define_raw('file', '%{bufferline#refresh_status()}'.bufferline#get_status_string()) endif endfunction