Skip to content

Commit cdd389e

Browse files
committed
options.txt: Update Vim 8.2.5126
1 parent 40b48c7 commit cdd389e

File tree

1 file changed

+16
-7
lines changed

1 file changed

+16
-7
lines changed

en/options.txt

Lines changed: 16 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*options.txt* For Vim version 8.2. Last change: 2022 May 21
1+
*options.txt* For Vim version 8.2. Last change: 2022 Jun 07
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -4264,7 +4264,8 @@ A jump table for the options with a short description can be found at |Q_op|.
42644264
The type of highlighting used can be set with the 'l' occasion in the
42654265
'highlight' option. This uses the "Search" highlight group by
42664266
default. Note that only the matching text is highlighted, any offsets
4267-
are not applied.
4267+
are not applied. If the "CurSearch" highlight group is set then the
4268+
current match is highlighted with that.
42684269
See also: 'incsearch' and |:match|.
42694270
When you get bored looking at the highlighted matches, you can turn it
42704271
off with |:nohlsearch|. This does not change the option value, as
@@ -5075,14 +5076,23 @@ A jump table for the options with a short description can be found at |Q_op|.
50755076
"space" setting is used. For example,
50765077
`:set listchars=multispace:---+` shows ten consecutive
50775078
spaces as:
5078-
---+---+--
5079+
---+---+-- ~
50795080
*lcs-lead*
50805081
lead:c Character to show for leading spaces. When omitted,
50815082
leading spaces are blank. Overrides the "space" and
50825083
"multispace" settings for leading spaces. You can
50835084
combine it with "tab:", for example: >
50845085
:set listchars+=tab:>-,lead:.
5085-
< *lcs-trail*
5086+
< *lcs-leadmultispace*
5087+
leadmultispace:c...
5088+
Like multispace value, but only for leading whitespace
5089+
Overrides |lcs-lead| for leading multiple spaces.
5090+
`:set listchars=leadmultispace:---+` shows ten consecutive
5091+
leading spaces as:
5092+
---+---+--XXX ~
5093+
Where "XXX" denotes the first non-blank characters in
5094+
the line.
5095+
*lcs-trail*
50865096
trail:c Character to show for trailing spaces. When omitted,
50875097
trailing spaces are blank. Overrides the "space" and
50885098
"multispace" settings for trailing spaces.
@@ -7624,10 +7634,9 @@ A jump table for the options with a short description can be found at |Q_op|.
76247634

76257635
If the statusline is not updated when you want it (e.g., after setting
76267636
a variable that's used in an expression), you can force an update by
7627-
setting an option without changing its value. Example: >
7628-
:let &ro = &ro
7637+
using `:redrawstatus`.
76297638

7630-
< A result of all digits is regarded a number for display purposes.
7639+
A result of all digits is regarded a number for display purposes.
76317640
Otherwise the result is taken as flag text and applied to the rules
76327641
described above.
76337642

0 commit comments

Comments
 (0)