```sh
git commit -s
-```
+```
This ensures that every contribution is properly documented and traceable,
aligning with industry standards used in projects like the Linux Kernel or
the git project. By making Signed-off commits a standard practice, we help
maintain a legally compliant and well-governed codebase while fostering trust
-within our contributor community.
+within our contributor community.
When merging PRs into Vim, the current maintainer @chrisbra usually adds missing
`Signed-off-by` trailers for the author user name and email address as well for
# Syntax, indent and other runtime files
The latest version of these files can be obtained from the repository.
-They are usually not updated with numbered patches. However, they may
+They are usually not updated with numbered patches. However, they may
or may not work with older Vim releases (since they may contain new features).
If you find a problem with one of these files or have a suggestion for
< 1.41
You will get an overflow error |E1510|, when the field-width
- or precision will result in a string longer than 1 MB
+ or precision will result in a string longer than 1 MiB
(1024*1024 = 1048576) chars.
*E1500*
- use 'smoothscroll' logic for CTRL-F / CTRL-B for pagewise scrolling
and CTRL-D / CTRL-U for half-pagewise scrolling
- New option value for 'fillchars':
- "trunc" - configure truncation indicator, 'pummaxwidth'
- "truncrl" - like "trunc" but in 'rl' mode, 'pummaxwidth'
+ "trunc" - configure truncation indicator, 'pummaxwidth'
+ "truncrl" - like "trunc" but in 'rl' mode, 'pummaxwidth'
Ex commands: ~
- allow to specify a priority when defining a new sign |:sign-define|
-*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
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,)