0
0
mirror of https://github.com/vim/vim.git synced 2025-08-27 20:13:38 -04:00

patch 9.1.0747: various typos in repo found

Problem:  various typos in repo found
Solution: Fix typos (zeertzjq)

closes: #15749

Signed-off-by: zeertzjq <zeertzjq@outlook.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
This commit is contained in:
zeertzjq 2024-09-29 10:37:47 +02:00 committed by Christian Brabandt
parent fa117387ee
commit 8feed3a525
No known key found for this signature in database
GPG Key ID: F3F92DA383FDDE09
9 changed files with 11 additions and 9 deletions

View File

@ -3868,7 +3868,7 @@ netrw:
netrw-safe guioptions netrw-safe guioptions
Nov 15, 2021 * removed netrw_localrm and netrw_localrmdir Nov 15, 2021 * removed netrw_localrm and netrw_localrmdir
references references
Aug 18, 2022 * (Miguel Barro) improving compatability with Aug 18, 2022 * (Miguel Barro) improving compatibility with
powershell powershell
v171: Oct 09, 2020 * included code in s:NetrwOptionsSafe() v171: Oct 09, 2020 * included code in s:NetrwOptionsSafe()
to allow |'bh'| to be set to delete when to allow |'bh'| to be set to delete when
@ -4099,7 +4099,7 @@ netrw:
The "<nowait>" modifier has been included The "<nowait>" modifier has been included
with most of netrw's mappings to avoid that with most of netrw's mappings to avoid that
delay. delay.
Jun 26, 2015 * |netrw-gn| mapping implemted Jun 26, 2015 * |netrw-gn| mapping implemented
* :Ntree NotADir resulted in having * :Ntree NotADir resulted in having
the tree listing expand in the error messages the tree listing expand in the error messages
window. Fixed. window. Fixed.

View File

@ -1349,7 +1349,7 @@ make, say :make html or :make pdf.
Additional arguments can be passed to groff by setting them in Additional arguments can be passed to groff by setting them in
`b:groff_compiler_args` or `g:groff_compiler_args`. The `language` argument `b:groff_compiler_args` or `g:groff_compiler_args`. The `language` argument
passed to groff is set using 'spelllang'; it can be overridden by setting passed to groff is set using 'spelllang'; it can be overridden by setting
`b:groff_compiler_lang`. The default enconding is `UTF-8` and can be changed `b:groff_compiler_lang`. The default encoding is `UTF-8` and can be changed
by setting `b:groff_compiler_encoding` or `g:groff_compiler_encoding`. by setting `b:groff_compiler_encoding` or `g:groff_compiler_encoding`.
PANDOC *quickfix-pandoc* *compiler-pandoc* PANDOC *quickfix-pandoc* *compiler-pandoc*

View File

@ -41620,7 +41620,7 @@ Functions: ~
Autocommands: ~ Autocommands: ~
|CursorMovedC| after the cursor was moved in the comamnd-line |CursorMovedC| after the cursor was moved in the command-line
|KeyInputPre| before processing any key event in any mode |KeyInputPre| before processing any key event in any mode
|SessionWritePost| after writing the session file |:mksession| |SessionWritePost| after writing the session file |:mksession|
|TermResponseAll| after the terminal response to |t_RV| and others is |TermResponseAll| after the terminal response to |t_RV| and others is

View File

@ -186,7 +186,7 @@ set_init_default_backupskip(void)
item = alloc(itemsize); item = alloc(itemsize);
if (item != NULL) if (item != NULL)
{ {
// add a preceeding comma as a separator after the first item // add a preceding comma as a separator after the first item
size_t itemseplen = (ga.ga_len == 0) ? 0 : 1; size_t itemseplen = (ga.ga_len == 0) ? 0 : 1;
size_t itemlen; size_t itemlen;

View File

@ -23,7 +23,7 @@ enddef
# Search for the "failed" directory in the passed _subtreedirname_ directories # Search for the "failed" directory in the passed _subtreedirname_ directories
# (usually "\<src\>" or "\<syntax\>") and, if found, select its passed _count_ # (usually "\<src\>" or "\<syntax\>") and, if found, select its passed _count_
# occurence, add all its "*.dump" files to the argument list and list them; # occurrence, add all its "*.dump" files to the argument list and list them;
# also define a BufRead autocommand that would invoke "Render()" for every # also define a BufRead autocommand that would invoke "Render()" for every
# "*.dump" file. # "*.dump" file.
def g:Init(subtreedirname: string, count: number) def g:Init(subtreedirname: string, count: number)

View File

@ -1621,7 +1621,7 @@ endfunc
" Test for using id() " Test for using id()
def Test_id_with_dict() def Test_id_with_dict()
# demonstate a way that "id(item)" differs from "string(item)" # demonstrate a way that "id(item)" differs from "string(item)"
var d1 = {one: 1} var d1 = {one: 1}
var d2 = {one: 1} var d2 = {one: 1}
var d3 = {one: 1} var d3 = {one: 1}

View File

@ -4274,7 +4274,7 @@ func Test_halfpage_longline()
endfunc endfunc
" Test for Ctrl-E with long line and very narrow window, " Test for Ctrl-E with long line and very narrow window,
" used to cause an inifite loop " used to cause an infinite loop
func Test_scroll_longline_no_loop() func Test_scroll_longline_no_loop()
4vnew 4vnew
setl smoothscroll number showbreak=> scrolloff=2 setl smoothscroll number showbreak=> scrolloff=2

View File

@ -704,6 +704,8 @@ static char *(features[]) =
static int included_patches[] = static int included_patches[] =
{ /* Add new patch number below this line */ { /* Add new patch number below this line */
/**/
747,
/**/ /**/
746, 746,
/**/ /**/

View File

@ -4609,7 +4609,7 @@ free_tabpage(tabpage_T *tp)
* Otherwise put it just before tab page "after". * Otherwise put it just before tab page "after".
* *
* Does not trigger WinNewPre, since the window structures * Does not trigger WinNewPre, since the window structures
* are not completly setup yet and could cause dereferencing * are not completely setup yet and could cause dereferencing
* NULL pointers * NULL pointers
* *
* Return FAIL or OK. * Return FAIL or OK.