David Blume's GitList
Repositories
dotfiles.git
Code
Commits
Branches
Tags
Search
Tree:
83d6ad7
Branches
Tags
main
pathogen
remove-vim-airline
vim-airline-disabled
vim-powerline
dotfiles.git
.vim
bundle
vim-airline
autoload
airline
extensions
tabline
formatters
tabnr.vim
Change from vim-powerline to vim-airline with powerlineish theme.
David Blume
commited
83d6ad7
at 2018-04-26 21:10:19
tabnr.vim
Blame
History
Raw
" MIT License. Copyright (c) 2017-2018 C.Brabandt et al. " vim: et ts=2 sts=2 sw=2 scriptencoding utf-8 function! airline#extensions#tabline#formatters#tabnr#format(tab_nr_type, nr) if a:tab_nr_type == 0 " nr of splits return (g:airline_symbols.space).'%{len(tabpagebuflist('.a:nr.'))}' elseif a:tab_nr_type == 1 " tab number return (g:airline_symbols.space).a:nr else "== 2 splits and tab number return (g:airline_symbols.space).a:nr.'.%{len(tabpagebuflist('.a:nr.'))}' endif endfunction