support changing how numbers are displayed in tab mode. resolves #217.

This commit is contained in:
Bailey Ling
2013-09-04 18:06:57 +00:00
parent 9b7191d052
commit 00e5e1c20e
2 changed files with 12 additions and 1 deletions

View File

@@ -302,6 +302,10 @@ virtualenv <https://github.com/jmcantrell/vim-virtualenv>
* configure filename match rules to exclude from the tabline. >
let g:airline#extensions#tabline#excludes = []
<
* configure how numbers are calculated in tab mode. >
let g:airline#extensions#tabline#tab_nr_type = 0 " # of splits (default)
let g:airline#extensions#tabline#tab_nr_type = 1 " tab number
<
* configure whether buffer numbers should be shown. >
let g:airline#extensions#tabline#buffer_nr_show = 0
<