Skip to content

Commit 76db9e0

Browse files
committed
Update runtime files
1 parent 0fd7be7 commit 76db9e0

45 files changed

Lines changed: 235 additions & 130 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/CODEOWNERS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -363,6 +363,7 @@ runtime/syntax/haml.vim @tpope
363363
runtime/syntax/hare.vim @rsaihe
364364
runtime/syntax/haskell.vim @coot
365365
runtime/syntax/hgcommit.vim @k-takata
366+
runtime/syntax/hollywood.vim @sodero
366367
runtime/syntax/html.vim @dkearns
367368
runtime/syntax/i3config.vim @hiqua
368369
runtime/syntax/icon.vim @dkearns

runtime/doc/builtin.txt

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*builtin.txt* For Vim version 9.0. Last change: 2022 Oct 21
1+
*builtin.txt* For Vim version 9.0. Last change: 2022 Nov 09
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -1321,7 +1321,8 @@ bufwinid({buf}) *bufwinid()*
13211321
13221322
echo "A window containing buffer 1 is " .. (bufwinid(1))
13231323
<
1324-
Only deals with the current tab page.
1324+
Only deals with the current tab page. See |win_findbuf()| for
1325+
finding more.
13251326

13261327
Can also be used as a |method|: >
13271328
FindBuffer()->bufwinid()
@@ -1589,7 +1590,7 @@ col({expr}) The result is a Number, which is the byte index of the column
15891590
column is one higher if the cursor is after the end of the
15901591
line. Also, when using a <Cmd> mapping the cursor isn't
15911592
moved, this can be used to obtain the column in Insert mode: >
1592-
:imap <F2> <Cmd>echo col(".")<CR>
1593+
:imap <F2> <Cmd>echowin col(".")<CR>
15931594
15941595
< Can also be used as a |method|: >
15951596
GetPos()->col()
@@ -2773,7 +2774,7 @@ flattennew({list} [, {maxdepth}]) *flattennew()*
27732774
float2nr({expr}) *float2nr()*
27742775
Convert {expr} to a Number by omitting the part after the
27752776
decimal point.
2776-
{expr} must evaluate to a |Float| or a Number.
2777+
{expr} must evaluate to a |Float| or a |Number|.
27772778
Returns 0 if {expr} is not a |Float| or a |Number|.
27782779
When the value of {expr} is out of range for a |Number| the
27792780
result is truncated to 0x7fffffff or -0x7fffffff (or when
@@ -10204,6 +10205,7 @@ win_move_separator({nr}, {offset}) *win_move_separator()*
1020410205
FALSE otherwise.
1020510206
This will fail for the rightmost window and a full-width
1020610207
window, since it has no separator on the right.
10208+
Only works for the current tab page. *E1308*
1020710209

1020810210
Can also be used as a |method|: >
1020910211
GetWinnr()->win_move_separator(offset)
@@ -10218,6 +10220,7 @@ win_move_statusline({nr}, {offset}) *win_move_statusline()*
1021810220
movement may be smaller than specified (e.g., as a consequence
1021910221
of maintaining 'winminheight'). Returns TRUE if the window can
1022010222
be found and FALSE otherwise.
10223+
Only works for the current tab page.
1022110224

1022210225
Can also be used as a |method|: >
1022310226
GetWinnr()->win_move_statusline(offset)

runtime/doc/channel.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -465,7 +465,7 @@ a close callback to the channel.
465465

466466
To read all normal output from a RAW channel that is available: >
467467
let output = ch_readraw(channel)
468-
To read all error output from a RAW channel that is available:: >
468+
To read all error output from a RAW channel that is available: >
469469
let output = ch_readraw(channel, {"part": "err"})
470470
Note that if the channel is in NL mode, ch_readraw() will only return one line
471471
for each call.

runtime/doc/cmdline.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -804,7 +804,7 @@ always be swapped then.
804804

805805
Count and Range *N:*
806806

807-
When giving a count before entering ":", this is translated into:
807+
When giving a count before entering ":", this is translated into: >
808808
:.,.+(count - 1)
809809
In words: The "count" lines at and after the cursor. Example: To delete
810810
three lines: >

runtime/doc/editing.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*editing.txt* For Vim version 9.0. Last change: 2022 Apr 16
1+
*editing.txt* For Vim version 9.0. Last change: 2022 Nov 02
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -583,7 +583,7 @@ END OF LINE AND END OF FILE *eol-and-eof*
583583
Vim has several options to control the file format:
584584
'fileformat' the <EOL> style: Unix, DOS, Mac
585585
'endofline' whether the last line ends with a <EOL>
586-
'endooffile' whether the file ends with a CTRL-Z
586+
'endoffile' whether the file ends with a CTRL-Z
587587
'fixendofline' whether to fix eol and eof
588588

589589
The first three values are normally detected automatically when reading the

runtime/doc/eval.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1965,7 +1965,7 @@ v:collate The current locale setting for collation order of the runtime
19651965
command.
19661966
See |multi-lang|.
19671967

1968-
*v:colornames*
1968+
*v:colornames*
19691969
v:colornames A dictionary that maps color names to hex color strings. These
19701970
color names can be used with the |highlight-guifg|,
19711971
|highlight-guibg|, and |highlight-guisp| parameters. Updating
@@ -3598,7 +3598,7 @@ this pending exception or command is discarded.
35983598
For examples see |throw-catch| and |try-finally|.
35993599

36003600

3601-
NESTING OF TRY CONDITIONALS *try-nesting*
3601+
NESTING OF TRY CONDITIONALS *try-nesting*
36023602

36033603
Try conditionals can be nested arbitrarily. That is, a complete try
36043604
conditional can be put into the try block, a catch clause, or the finally

runtime/doc/filetype.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -571,7 +571,7 @@ used.
571571
For example, to set the dialect to a default of "fblite" but still allow for
572572
any #lang directive overrides, use the following command: >
573573
574-
let g:freebasic_lang = "fblite"
574+
let g:freebasic_lang = "fblite"
575575
576576
577577
GIT COMMIT *ft-gitcommit-plugin*

runtime/doc/help.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -161,6 +161,8 @@ Programming language support ~
161161
|filetype.txt| settings done specifically for a type of file
162162
|quickfix.txt| commands for a quick edit-compile-fix cycle
163163
|ft_ada.txt| Ada (the programming language) support
164+
|ft_context.txt| Filetype plugin for ConTeXt
165+
|ft_mp.txt| Filetype plugin for METAFONT and MetaPost
164166
|ft_ps1.txt| Filetype plugin for Windows PowerShell
165167
|ft_raku.txt| Filetype plugin for Raku
166168
|ft_rust.txt| Filetype plugin for Rust

runtime/doc/os_haiku.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ additionally installed over the GUI version. Typical build commands are:
5656
./configure --prefix=`finddir B_SYSTEM_NONPACKAGED_DIRECTORY` \
5757
--datarootdir=`finddir B_SYSTEM_NONPACKAGED_DATA_DIRECTORY` \
5858
--mandir=`finddir B_SYSTEM_NONPACKAGED_DIRECTORY`/documentation/man \
59-
--with-tlib=ncurses \
59+
--with-tlib=ncurses
6060
make clean
6161
make install
6262

runtime/doc/pi_tar.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ Copyright 2005-2017: *tar-copyright*
8282
<.vimrc> file.
8383
Default
8484
Variable Value Explanation
85-
*g:tar_browseoptions* "Ptf" used to get a list of contents
85+
*g:tar_browseoptions* "Ptf" used to get a list of contents
8686
*g:tar_readoptions* "OPxf" used to extract a file from a tarball
8787
*g:tar_cmd* "tar" the name of the tar program
8888
*g:tar_nomax* 0 if true, file window will not be maximized
@@ -98,7 +98,7 @@ Copyright 2005-2017: *tar-copyright*
9898
"-"
9999
Not all tar's support the "--" which is why
100100
it isn't default.
101-
*g:tar_writeoptions* "uf" used to update/replace a file
101+
*g:tar_writeoptions* "uf" used to update/replace a file
102102

103103

104104
==============================================================================

0 commit comments

Comments
 (0)