0
0
mirror of https://github.com/vim/vim.git synced 2025-07-04 23:07:33 -04:00

runtime(doc): Tweak documentation style a bit

Signed-off-by: Christian Brabandt <cb@256bit.org>
This commit is contained in:
Hirohito Higashi 2025-04-18 18:45:31 +02:00 committed by Christian Brabandt
parent ded2b41326
commit 0ed11ba223
No known key found for this signature in database
GPG Key ID: F3F92DA383FDDE09
4 changed files with 10 additions and 10 deletions

View File

@ -8158,7 +8158,7 @@ printf({fmt}, {expr1} ...) *printf()*
< 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*

View File

@ -41637,8 +41637,8 @@ Options: ~
- 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|

View File

@ -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
@ -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,)