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
7 changes: 1 addition & 6 deletions doc/vim9.jax
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
*vim9.txt* For Vim バージョン 9.2. Last change: 2026 Feb 14
*vim9.txt* For Vim バージョン 9.2. Last change: 2026 May 04


VIM リファレンスマニュアル by Bram Moolenaar
Expand Down Expand Up @@ -2335,11 +2335,6 @@ script と Vim9 script の両方で、辞書以外の値が必要なときに、

let &laststatus=v:true
vim9cmd &laststatus = true
<
- 引数に文字列が必要な場合に文字列を使用しない (|E1174|) >vim

echo substitute('Hallo', 'a', 'e', v:true)
vim9cmd echo substitute('Hallo', 'a', 'e', true) # E1174: String...
<
結果として、|map()| に渡されるリストまたは辞書の項目の型は、その型が宣言または
推論された場合でも変更してはいけない。例えば、これは Vim9 script ではエラーに
Expand Down
7 changes: 1 addition & 6 deletions en/vim9.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
*vim9.txt* For Vim version 9.2. Last change: 2026 Feb 14
*vim9.txt* For Vim version 9.2. Last change: 2026 May 04


VIM REFERENCE MANUAL by Bram Moolenaar
Expand Down Expand Up @@ -2355,11 +2355,6 @@ in Vim9 script.

let &laststatus=v:true
vim9cmd &laststatus = true
<
- Not using a string where an argument requires a string (|E1174|) >vim

echo substitute('Hallo', 'a', 'e', v:true)
vim9cmd echo substitute('Hallo', 'a', 'e', true) # E1174: String...
<
One consequence is that the item type of a list or dict given to |map()| must
not change when its type is either declared or inferred. For example, this
Expand Down