1
- *options.txt* For Vim version 9.1. Last change: 2023 Nov 20
1
+ *options.txt* For Vim version 9.1. Last change: 2024 Jan 30
2
2
3
3
4
4
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -997,11 +997,11 @@ A jump table for the options with a short description can be found at |Q_op|.
997
997
what the background color looks like. For changing the background
998
998
color, see | :hi-normal | .
999
999
1000
- When 'background' is set Vim will adjust the default color groups for
1001
- the new value. But the colors used for syntax highlighting will not
1002
- change. *g:colors_name*
1000
+ When 'background' is changed Vim will adjust the default color groups
1001
+ for the new value. But the colors used for syntax highlighting will
1002
+ not change. *g:colors_name*
1003
1003
When a color scheme is loaded (the "g:colors_name" variable is set)
1004
- setting 'background' will cause the color scheme to be reloaded. If
1004
+ changing 'background' will cause the color scheme to be reloaded. If
1005
1005
the color scheme adjusts to the value of 'background' this will work.
1006
1006
However, if the color scheme sets 'background' itself the effect may
1007
1007
be undone. First delete the "g:colors_name" variable when needed.
@@ -3478,12 +3478,10 @@ A jump table for the options with a short description can be found at |Q_op|.
3478
3478
*'fillchars'* *'fcs'*
3479
3479
'fillchars' 'fcs' string (default "vert:|,fold:-,eob:~")
3480
3480
global or local to window | global-local |
3481
- {not available when compiled without the | +folding |
3482
- feature}
3483
3481
Characters to fill the statuslines, vertical separators and special
3484
3482
lines in the window.
3485
3483
It is a comma-separated list of items. Each item has a name, a colon
3486
- and the value of that item:
3484
+ and the value of that item: | E1511 |
3487
3485
3488
3486
item name default Used for ~
3489
3487
stl ' ' statusline of the current window
@@ -3504,7 +3502,7 @@ A jump table for the options with a short description can be found at |Q_op|.
3504
3502
<
3505
3503
For the "stl", "stlnc", "foldopen", "foldclose" and "foldsep" items
3506
3504
single-byte and multibyte characters are supported. But double-width
3507
- characters are not supported.
3505
+ characters are not supported. | E1512 |
3508
3506
3509
3507
The highlighting used for these items:
3510
3508
item name highlight group ~
@@ -3838,9 +3836,9 @@ A jump table for the options with a short description can be found at |Q_op|.
3838
3836
:s///gg subst. all subst. one
3839
3837
3840
3838
NOTE: This option is reset when 'compatible' is set.
3841
- DEPRECATED : Setting this option may break plugins that are not aware
3842
- of this option. Also, many users get confused that adding the /g flag
3843
- has the opposite effect of that it normally does .
3839
+ Setting this option may break plugins that rely on the default
3840
+ behavior of the 'g' flag. This will also make the 'g' flag have the
3841
+ opposite effect of that documented in | :s_g | .
3844
3842
This option is not used in | Vim9 | script.
3845
3843
3846
3844
*'grepformat'* *'gfm'*
@@ -5243,7 +5241,7 @@ A jump table for the options with a short description can be found at |Q_op|.
5243
5241
'listchars' 'lcs' string (default "eol:$")
5244
5242
global or local to window | global-local |
5245
5243
Strings to use in 'list' mode and for the | :list | command. It is a
5246
- comma-separated list of string settings.
5244
+ comma-separated list of string settings. *E1511*
5247
5245
*lcs-eol*
5248
5246
eol:c Character to show at the end of each line. When
5249
5247
omitted, there is no extra character at the end of the
@@ -5319,7 +5317,7 @@ A jump table for the options with a short description can be found at |Q_op|.
5319
5317
5320
5318
The characters ':' and ',' should not be used. UTF-8 characters can
5321
5319
be used when 'encoding' is "utf-8", otherwise only printable
5322
- characters are allowed. All characters must be single width.
5320
+ characters are allowed. All characters must be single width. *E1512*
5323
5321
5324
5322
Each character can be specified as hex: >
5325
5323
set listchars=eol:\\x24
@@ -5477,6 +5475,7 @@ A jump table for the options with a short description can be found at |Q_op|.
5477
5475
Increasing this limit above 200 also changes the maximum for Ex
5478
5476
command recursion, see | E169 | .
5479
5477
See also | :function | .
5478
+ Also used for maximum depth of callback functions.
5480
5479
5481
5480
*'maxmapdepth'* *'mmd'* *E223*
5482
5481
'maxmapdepth' 'mmd' number (default 1000)
@@ -8582,8 +8581,11 @@ A jump table for the options with a short description can be found at |Q_op|.
8582
8581
will not work (except in the GUI).
8583
8582
If the title cannot be restored, it is set to the value of 'titleold' .
8584
8583
You might want to restore the title outside of Vim then.
8585
- When using an xterm from a remote machine you can use this command:
8584
+ When using an xterm from a remote machine you can use this command: >
8585
+
8586
8586
rsh machine_name xterm -display $DISPLAY &
8587
+ ssh -X machine_name xterm &
8588
+ <
8587
8589
then the WINDOWID environment variable should be inherited and the
8588
8590
title of the window should change back to what it should be after
8589
8591
exiting Vim.
0 commit comments