From b57022bfc2e8fe7ffaa044f447850dca6500c16a Mon Sep 17 00:00:00 2001 From: Christian Brabandt Date: Thu, 16 Mar 2017 21:17:09 +0100 Subject: [PATCH] update to the documentation Mention, that the variable g:airline#extensions#tabline#switch_buffers_and_tabs only works with the ctrlspace integration. closes #1390 --- doc/airline.txt | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/doc/airline.txt b/doc/airline.txt index 241aefd..afd31c4 100644 --- a/doc/airline.txt +++ b/doc/airline.txt @@ -557,9 +557,10 @@ are supported! * enable/disable displaying open splits per tab (only when tabs are opened). > let g:airline#extensions#tabline#show_splits = 1 * -* switch position of buffers and tabs on splited tabline (c) +* switch position of buffers and tabs on splited tabline (c) + (only supported for ctrlspace plugin). > let g:airline#extensions#tabline#switch_buffers_and_tabs = 0 - +< * enable/disable displaying buffers with a single tab. (c) let g:airline#extensions#tabline#show_buffers = 1 < @@ -808,10 +809,10 @@ vim-ctrlspace * enable/disable vim-ctrlspace integration > let g:airline#extensions#ctrlspace#enabled = 1 - +< To make the vim-ctrlspace integration work you will need to make the ctrlspace statusline function call the correct airline function. Therefore - add the following line into your .vimrc: + add the following line into your .vimrc: > let g:CtrlSpaceStatuslineFunction = "airline#extensions#ctrlspace#statusline()" <