Skip to content

Update vim9.{txt,jax} #2050

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 22, 2025
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
2 changes: 1 addition & 1 deletion doc/vim9.jax
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
*vim9.txt* For Vim バージョン 9.1. Last change: 2025 Apr 03
*vim9.txt* For Vim バージョン 9.1. Last change: 2025 Apr 18

VIMリファレンスマニュアル by Bram Moolenaar

Expand Down
8 changes: 4 additions & 4 deletions en/vim9.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
*vim9.txt* For Vim version 9.1. Last change: 2025 Apr 03
*vim9.txt* For Vim version 9.1. Last change: 2025 Apr 18


VIM REFERENCE MANUAL by Bram Moolenaar
Expand Down Expand Up @@ -1493,11 +1493,11 @@ tuple<number> a tuple with a single item of type |Number|
tuple<number, string> a tuple with two items of type |Number| and
|String|
tuple<number, float, bool> a tuple with three items of type |Number|,
|Float| and |Boolean|.
|Float| and |Boolean|
tuple<...list<number>> a variadic tuple with zero or more items of
type |Number|.
type |Number|
tuple<number, ...list<string>> a tuple with an item of type |Number| followed
by zero or more items of type |String|.
by zero or more items of type |String|

Examples: >
var myTuple: tuple<number> = (20,)
Expand Down