1
- *options.txt* For Vim version 9.1. Last change: 2025 Jun 05
1
+ *options.txt* For Vim version 9.1. Last change: 2025 Jun 07
2
2
3
3
4
4
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -7704,15 +7704,13 @@ A jump table for the options with a short description can be found at |Q_op|.
7704
7704
*'showtabpanel'* *'stpl'*
7705
7705
'showtabpanel' 'stpl' number (default 0)
7706
7706
global
7707
- {not in Vi}
7708
7707
{not available when compiled without the | +tabpanel |
7709
7708
feature}
7710
7709
The value of this option specifies when the | tabpanel | with tab page
7711
7710
labels will be displayed:
7712
7711
0: never
7713
7712
1: only if there are at least two tab pages
7714
7713
2: always
7715
- This is for the non-GUI implementation of the tabpanel only.
7716
7714
See | tab-page | for more information about tab page labels.
7717
7715
7718
7716
*'sidescroll'* *'ss'*
@@ -8430,9 +8428,8 @@ A jump table for the options with a short description can be found at |Q_op|.
8430
8428
argument or the ":tab all" command. | tabpage |
8431
8429
8432
8430
*'tabpanel'* *'tpl'* *g:actual_curtabpage*
8433
- 'tabpanel' 'tpl' string (default empty)
8431
+ 'tabpanel' 'tpl' string (default empty)
8434
8432
global
8435
- {not in Vi}
8436
8433
When non-empty, this option determines the content of the | tabpanel | .
8437
8434
The option consists of printf style '%' items interspersed with
8438
8435
normal text, similar to the 'statusline' or 'tabline' .
@@ -8443,12 +8440,12 @@ A jump table for the options with a short description can be found at |Q_op|.
8443
8440
8444
8441
You can use | g:actual_curtabpage | within a function assigned to
8445
8442
tabpanel. | g:actual_curtabpage | represents current tab's label number.
8446
- This option can contain line breaks:
8447
- >
8448
- set tabpanel=%!TabPanel()
8449
- function! TabPanel() abort
8450
- return printf("(%2d)\n %%f", g:actual_curtabpage)
8451
- endfunction
8443
+ The option value can contain line breaks: >
8444
+
8445
+ set tabpanel=%!TabPanel()
8446
+ function! TabPanel() abort
8447
+ return printf("(%2d)\n %%f", g:actual_curtabpage)
8448
+ endfunction
8452
8449
<
8453
8450
The result is:
8454
8451
>
@@ -8461,30 +8458,28 @@ A jump table for the options with a short description can be found at |Q_op|.
8461
8458
| |
8462
8459
| |
8463
8460
<
8464
-
8465
8461
*'tabpanelopt'* *'tplo'*
8466
- 'tabpanelopt' 'tplo' string (default "")
8462
+ 'tabpanelopt' 'tplo' string (default "")
8467
8463
global
8468
- {not in Vi}
8469
8464
Optional settings for the | tabpanel | , It can consist of the following
8470
8465
items. Items must be separated by a comma.
8471
8466
8472
8467
align:{text} Specifies the position of the tabpanel.
8473
8468
Currently supported positions are:
8474
8469
8475
- left left-aligned
8476
- right right-aligned
8470
+ left left-side
8471
+ right right-side
8477
8472
8478
8473
(default "left")
8479
8474
8480
- columns:{n} Use the size (in characters) of the tabpanel.
8481
- The tabpanel is never shown when using zero
8482
- or less than the size of Vim window .
8475
+ columns:{n} Number of columns of the tabpanel.
8476
+ If this value is 0 or less than 'columns' , the
8477
+ tab panel will not be displayed .
8483
8478
(default 20)
8484
8479
8485
8480
vert Use a vertical separator for tabpanel.
8486
- This vertical separator used is "tpl_vert" of
8487
- 'fillchars' .
8481
+ The vertical separator character is taken from
8482
+ "tpl_vert" in 'fillchars' .
8488
8483
(default off)
8489
8484
8490
8485
Examples: >
@@ -8493,16 +8488,15 @@ A jump table for the options with a short description can be found at |Q_op|.
8493
8488
:set tabpanelopt=vert,align:right
8494
8489
:set tabpanelopt=columns:16
8495
8490
<
8496
-
8497
8491
*'tabstop'* *'ts'*
8498
8492
'tabstop' 'ts' number (default 8)
8499
8493
local to buffer
8500
8494
Defines the column multiple used to display the Horizontal Tab
8501
- character (ASCII 9); a Horizontal Tab always advances to the next
8502
- tab stop.
8495
+ character (ASCII 9); a Horizontal Tab always advances to the next tab
8496
+ stop.
8503
8497
The value must be at least 1 and at most 9999.
8504
- If Vim was compiled with | +vartabs | and | 'vartabstop' | is set, this option
8505
- is ignored.
8498
+ If Vim was compiled with | +vartabs | and | 'vartabstop' | is set, this
8499
+ option is ignored.
8506
8500
Leave it at 8 unless you have a strong reason (see usr | 30.5 | ).
8507
8501
8508
8502
0 commit comments