Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions doc/builtin.jax
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
*builtin.txt* For Vim バージョン 9.1. Last change: 2025 Feb 06
*builtin.txt* For Vim バージョン 9.1. Last change: 2025 Feb 17


VIMリファレンスマニュアル by Bram Moolenaar
Expand Down Expand Up @@ -3019,7 +3019,8 @@ extend({expr1}, {expr2} [, {expr3}]) *extend()*
{expr3}が省略された場合は "force" と同じになる。

{expr2}が空でないならば{expr1}が変更される。必要ならば最初に
{expr1}のコピーを作ること。
{expr1}のコピーを作るか、|extendnew()| を使用して新しいリスト/
辞書を返すこと。
{expr2}は変更されない。
{expr1} がロックされていて、かつ {expr2} が空でない場合は操作
は失敗する。
Expand Down
5 changes: 3 additions & 2 deletions en/builtin.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
*builtin.txt* For Vim version 9.1. Last change: 2025 Feb 06
*builtin.txt* For Vim version 9.1. Last change: 2025 Feb 17


VIM REFERENCE MANUAL by Bram Moolenaar
Expand Down Expand Up @@ -3006,7 +3006,8 @@ extend({expr1}, {expr2} [, {expr3}]) *extend()*
When {expr3} is omitted then "force" is assumed.

{expr1} is changed when {expr2} is not empty. If necessary
make a copy of {expr1} first.
make a copy of {expr1} first or use |extendnew()| to return a
new List/Dictionary.
{expr2} remains unchanged.
When {expr1} is locked and {expr2} is not empty the operation
fails.
Expand Down