Skip to content

Commit 946b300

Browse files
committed
options.txt: Update Vim 8.2.5034
1 parent 04a60d4 commit 946b300

File tree

1 file changed

+3
-21
lines changed

1 file changed

+3
-21
lines changed

en/options.txt

Lines changed: 3 additions & 21 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 07
1+
*options.txt* For Vim version 8.2. Last change: 2022 May 21
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -1621,8 +1621,6 @@ A jump table for the options with a short description can be found at |Q_op|.
16211621
*'cindent'* *'cin'* *'nocindent'* *'nocin'*
16221622
'cindent' 'cin' boolean (default off)
16231623
local to buffer
1624-
{not available when compiled without the |+cindent|
1625-
feature}
16261624
Enables automatic C program indenting. See 'cinkeys' to set the keys
16271625
that trigger reindenting in insert mode and 'cinoptions' to set your
16281626
preferred indent style.
@@ -1639,8 +1637,6 @@ A jump table for the options with a short description can be found at |Q_op|.
16391637
*'cinkeys'* *'cink'*
16401638
'cinkeys' 'cink' string (default "0{,0},0),0],:,0#,!^F,o,O,e")
16411639
local to buffer
1642-
{not available when compiled without the |+cindent|
1643-
feature}
16441640
A list of keys that, when typed in Insert mode, cause reindenting of
16451641
the current line. Only used if 'cindent' is on and 'indentexpr' is
16461642
empty.
@@ -1650,8 +1646,6 @@ A jump table for the options with a short description can be found at |Q_op|.
16501646
*'cinoptions'* *'cino'*
16511647
'cinoptions' 'cino' string (default "")
16521648
local to buffer
1653-
{not available when compiled without the |+cindent|
1654-
feature}
16551649
The 'cinoptions' affect the way 'cindent' reindents lines in a C
16561650
program. See |cinoptions-values| for the values of this option, and
16571651
|C-indenting| for info on C indenting in general.
@@ -1660,8 +1654,6 @@ A jump table for the options with a short description can be found at |Q_op|.
16601654
*'cinwords'* *'cinw'*
16611655
'cinwords' 'cinw' string (default "if,else,while,do,for,switch")
16621656
local to buffer
1663-
{not available when compiled without both the
1664-
|+cindent| and the |+smartindent| features}
16651657
These keywords start an extra indent in the next line when
16661658
'smartindent' or 'cindent' is set. For 'cindent' this is only done at
16671659
an appropriate place (inside {}).
@@ -1672,8 +1664,6 @@ A jump table for the options with a short description can be found at |Q_op|.
16721664
*'cinscopedecls'* *'cinsd'*
16731665
'cinscopedecls' 'cinsd' string (default "public,protected,private")
16741666
local to buffer
1675-
{not available when compiled without the |+cindent|
1676-
feature}
16771667
Keywords that are interpreted as a C++ scope declaration by |cino-g|.
16781668
Useful e.g. for working with the Qt framework that defines additional
16791669
scope declarations "signals", "public slots" and "private slots": >
@@ -4578,8 +4568,8 @@ A jump table for the options with a short description can be found at |Q_op|.
45784568
*'indentexpr'* *'inde'*
45794569
'indentexpr' 'inde' string (default "")
45804570
local to buffer
4581-
{not available when compiled without the |+cindent|
4582-
or |+eval| features}
4571+
{not available when compiled without the |+eval|
4572+
feature}
45834573
Expression which is evaluated to obtain the proper indent for a line.
45844574
It is used when a new line is created, for the |=| operator and
45854575
in Insert mode as specified with the 'indentkeys' option.
@@ -4624,8 +4614,6 @@ A jump table for the options with a short description can be found at |Q_op|.
46244614
*'indentkeys'* *'indk'*
46254615
'indentkeys' 'indk' string (default "0{,0},0),0],:,0#,!^F,o,O,e")
46264616
local to buffer
4627-
{not available when compiled without the |+cindent|
4628-
feature}
46294617
A list of keys that, when typed in Insert mode, cause reindenting of
46304618
the current line. Only happens if 'indentexpr' isn't empty.
46314619
The format is identical to 'cinkeys', see |indentkeys-format|.
@@ -5013,8 +5001,6 @@ A jump table for the options with a short description can be found at |Q_op|.
50135001
*'lisp'* *'nolisp'*
50145002
'lisp' boolean (default off)
50155003
local to buffer
5016-
{not available when compiled without the |+lispindent|
5017-
feature}
50185004
Lisp mode: When <Enter> is typed in insert mode set the indent for
50195005
the next line to Lisp standards (well, sort of). Also happens with
50205006
"cc" or "S". 'autoindent' must also be on for this to work. The 'p'
@@ -5028,8 +5014,6 @@ A jump table for the options with a short description can be found at |Q_op|.
50285014
*'lispwords'* *'lw'*
50295015
'lispwords' 'lw' string (default is very long)
50305016
global or local to buffer |global-local|
5031-
{not available when compiled without the |+lispindent|
5032-
feature}
50335017
Comma-separated list of words that influence the Lisp indenting.
50345018
|'lisp'|
50355019

@@ -7222,8 +7206,6 @@ A jump table for the options with a short description can be found at |Q_op|.
72227206
*'smartindent'* *'si'* *'nosmartindent'* *'nosi'*
72237207
'smartindent' 'si' boolean (default off)
72247208
local to buffer
7225-
{not available when compiled without the
7226-
|+smartindent| feature}
72277209
Do smart autoindenting when starting a new line. Works for C-like
72287210
programs, but can also be used for other languages. 'cindent' does
72297211
something like this, works better in most cases, but is more strict,

0 commit comments

Comments
 (0)