Small fixes to syntax in help file.

This commit is contained in:
Doron Behar 2017-08-16 19:56:44 +03:00
parent d8eb12845f
commit 69ad039d07

View File

@ -634,7 +634,7 @@ eclim <https://eclim.org>
Note: If you're using the ctrlspace tabline only the option marked with (c) Note: If you're using the ctrlspace tabline only the option marked with (c)
are supported! are supported!
* enable/disable enhanced tabline. (c) * enable/disable enhanced tabline. (c) >
let g:airline#extensions#tabline#enabled = 0 let g:airline#extensions#tabline#enabled = 0
* enable/disable displaying open splits per tab (only when tabs are opened). > * enable/disable displaying open splits per tab (only when tabs are opened). >
@ -644,7 +644,7 @@ are supported!
(only supported for ctrlspace plugin). > (only supported for ctrlspace plugin). >
let g:airline#extensions#tabline#switch_buffers_and_tabs = 0 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 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 on the tabline with the left mouse button to switch to that buffer, and
with the middle mouse button to delete that buffer. 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 let g:airline#extensions#tabline#show_tabs = 1
< <
* configure filename match rules to exclude from the tabline. > * 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, Note: The tab-type will only be displayed in tab-mode,
if there are no splits shown. (See: g:airline#extensions#tabline#show_splits) 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' 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' let g:airline#extensions#tabline#tabs_label = 't'
* enable/disable displaying index of the buffer. * 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' let g:airline#extensions#tabline#formatter = 'default'
" here is how you can define a 'foo' formatter: " 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 > * enable/disable vimtex integration >
let g:airline#extensions#vimtex#enabled = 1 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#left = "{"
let g:airline#extensions#vimtex#right = "}" let g:airline#extensions#vimtex#right = "}"
State indicators: 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 = "" let g:airline#extensions#vimtex#main = ""
* the current tex file is a subfile of the project * 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" let g:airline#extensions#vimtex#sub_main = "m"
* the current tex file is a subfile of the project * 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" let g:airline#extensions#vimtex#sub_local = "l"
* single compilation is running * single compilation is running >
let g:airline#extensions#vimtex#compiled = "c₁" let g:airline#extensions#vimtex#compiled = "c₁"
* continuousr compilation is running * continuousr compilation is running >
let g:airline#extensions#vimtex#continuous = "c" let g:airline#extensions#vimtex#continuous = "c"
* viewer is opened * viewer is opened >
let g:airline#extensions#vimtex#viewer = "v" let g:airline#extensions#vimtex#viewer = "v"
------------------------------------- *airline-ale* ------------------------------------- *airline-ale*