diff --git a/doc/airline.txt b/doc/airline.txt index 7b676c90..f159bef3 100644 --- a/doc/airline.txt +++ b/doc/airline.txt @@ -634,7 +634,7 @@ eclim Note: If you're using the ctrlspace tabline only the option marked with (c) are supported! -* enable/disable enhanced tabline. (c) +* enable/disable enhanced tabline. (c) > let g:airline#extensions#tabline#enabled = 0 * enable/disable displaying open splits per tab (only when tabs are opened). > @@ -644,7 +644,7 @@ are supported! (only supported for ctrlspace plugin). > let g:airline#extensions#tabline#switch_buffers_and_tabs = 0 < -* enable/disable displaying buffers with a single tab. (c) +* enable/disable displaying buffers with a single tab. (c) > let g:airline#extensions#tabline#show_buffers = 1 < @@ -652,7 +652,7 @@ Note: If you are using neovim (has('tablineat') = 1), then you can click on the tabline with the left mouse button to switch to that buffer, and with the middle mouse button to delete that buffer. -* enable/disable displaying tabs, regardless of number. (c) +* enable/disable displaying tabs, regardless of number. (c) > let g:airline#extensions#tabline#show_tabs = 1 < * configure filename match rules to exclude from the tabline. > @@ -675,10 +675,10 @@ with the middle mouse button to delete that buffer. Note: The tab-type will only be displayed in tab-mode, if there are no splits shown. (See: g:airline#extensions#tabline#show_splits) -* rename label for buffers (default: 'buffers') (c) +* rename label for buffers (default: 'buffers') (c) > let g:airline#extensions#tabline#buffers_label = 'b' -* rename label for tabs (default: 'tabs') (c) +* rename label for tabs (default: 'tabs') (c) > let g:airline#extensions#tabline#tabs_label = 't' * enable/disable displaying index of the buffer. @@ -722,7 +722,7 @@ with the middle mouse button to delete that buffer. \} < -* defines the name of a formatter for how buffer names are displayed. (c) +* defines the name of a formatter for how buffer names are displayed. (c) > let g:airline#extensions#tabline#formatter = 'default' " here is how you can define a 'foo' formatter: @@ -930,30 +930,30 @@ Shows the current file's vimtex related info. * enable/disable vimtex integration > let g:airline#extensions#vimtex#enabled = 1 < -* left and right delimiters (shown only when status string is not empty) +* left and right delimiters (shown only when status string is not empty) > let g:airline#extensions#vimtex#left = "{" let g:airline#extensions#vimtex#right = "}" State indicators: -* the current tex file is the main project file (nothing is shown by default) +* the current tex file is the main project file (nothing is shown by default) > let g:airline#extensions#vimtex#main = "" * the current tex file is a subfile of the project - and the compilation is set for the main file + and the compilation is set for the main file > let g:airline#extensions#vimtex#sub_main = "m" * the current tex file is a subfile of the project - and the compilation is set for this subfile + and the compilation is set for this subfile > let g:airline#extensions#vimtex#sub_local = "l" -* single compilation is running +* single compilation is running > let g:airline#extensions#vimtex#compiled = "c₁" -* continuousr compilation is running +* continuousr compilation is running > let g:airline#extensions#vimtex#continuous = "c" -* viewer is opened +* viewer is opened > let g:airline#extensions#vimtex#viewer = "v" ------------------------------------- *airline-ale*