runtime(doc): make order of verbs match order of operators

related: #18380
closes: #18388

Signed-off-by: zeertzjq <zeertzjq@outlook.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
This commit is contained in:
zeertzjq
2025-09-25 20:07:24 +00:00
committed by Christian Brabandt
parent 07c68245de
commit 377339dff3

View File

@ -1,4 +1,4 @@
*eval.txt* For Vim version 9.1. Last change: 2025 Sep 24 *eval.txt* For Vim version 9.1. Last change: 2025 Sep 25
VIM REFERENCE MANUAL by Bram Moolenaar VIM REFERENCE MANUAL by Bram Moolenaar
@ -3240,8 +3240,8 @@ declarations and assignments do not use a command. |vim9-declaration|
:let [{name1}, {name2}, ...] %= {expr1} :let [{name1}, {name2}, ...] %= {expr1}
:let [{name1}, {name2}, ...] .= {expr1} :let [{name1}, {name2}, ...] .= {expr1}
:let [{name1}, {name2}, ...] ..= {expr1} :let [{name1}, {name2}, ...] ..= {expr1}
Like above, but append, add, subtract, multiply, Like above, but add, subtract, multiply, divide,
divide, or modulo the value for each |List| or |Tuple| modulo, or append the value for each |List| or |Tuple|
item. item.
`.=` is not supported with Vim script version 2 and `.=` is not supported with Vim script version 2 and
later, see |vimscript-version|. later, see |vimscript-version|.
@ -3260,7 +3260,7 @@ declarations and assignments do not use a command. |vim9-declaration|
:let [{name}, ..., ; {lastname}] -= {expr1} :let [{name}, ..., ; {lastname}] -= {expr1}
:let [{name}, ..., ; {lastname}] .= {expr1} :let [{name}, ..., ; {lastname}] .= {expr1}
:let [{name}, ..., ; {lastname}] ..= {expr1} :let [{name}, ..., ; {lastname}] ..= {expr1}
Like above, but append/add/subtract the value for each Like above, but add/subtract/append the value for each
|List| item. |List| item.
`.=` is not supported with Vim script version 2 and `.=` is not supported with Vim script version 2 and
later, see |vimscript-version|. later, see |vimscript-version|.