Skip to content

Commit e910841

Browse files
committed
Merge remote-tracking branch 'vim/master'
2 parents c368ebb + 96952b2 commit e910841

Some content is hidden

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

72 files changed

+778
-157
lines changed

runtime/autoload/netrw.vim

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1961,7 +1961,7 @@ endfun
19611961
" Doing this means that netrw will not come up as having changed a
19621962
" setting last when it really didn't actually change it.
19631963
"
1964-
" Used by s:NetrwOptionsRestore() to restore each netrw-senstive setting
1964+
" Used by s:NetrwOptionsRestore() to restore each netrw-sensitive setting
19651965
" keepvars are set up by s:NetrwOptionsSave
19661966
fun! s:NetrwRestoreSetting(keepvar,setting)
19671967
""" call Dfunc("s:NetrwRestoreSetting(a:keepvar<".a:keepvar."> a:setting<".a:setting.">)")
@@ -5562,7 +5562,7 @@ fun! netrw#BrowseX(fname,remote)
55625562
" cleanup: remove temporary file,
55635563
" delete current buffer if success with handler,
55645564
" return to prior buffer (directory listing)
5565-
" Feb 12, 2008: had to de-activiate removal of
5565+
" Feb 12, 2008: had to de-activate removal of
55665566
" temporary file because it wasn't getting seen.
55675567
" if remote == 1 && fname != a:fname
55685568
"" call Decho("deleting temporary file<".fname.">",'~'.expand("<slnum>"))

runtime/autoload/phpcomplete.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2907,7 +2907,7 @@ endfor
29072907
" builtin class information
29082908
let g:php_builtin_object_functions = {}
29092909

2910-
" When completing for 'everyting imaginable' (no class context, not a
2910+
" When completing for 'everything imaginable' (no class context, not a
29112911
" variable) we need a list of built-in classes in a format of {'classname':''}
29122912
" for performance reasons we precompile this too
29132913
let g:php_builtin_classnames = {}

runtime/autoload/rustfmt.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ function! rustfmt#DetectVersion()
2525
silent let s:rustfmt_help = system(g:rustfmt_command . " --help")
2626
let s:rustfmt_unstable_features = s:rustfmt_help =~# "--unstable-features"
2727

28-
" Build a comparable rustfmt version varible out of its `--version` output:
28+
" Build a comparable rustfmt version variable out of its `--version` output:
2929
silent let l:rustfmt_version_full = system(g:rustfmt_command . " --version")
3030
let l:rustfmt_version_list = matchlist(l:rustfmt_version_full,
3131
\ '\vrustfmt ([0-9]+[.][0-9]+[.][0-9]+)')

runtime/autoload/typeset.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ enddef
9797

9898
# Public interface {{{
9999
# When a TeX document is split into several source files, each source file
100-
# may contain a "magic line" specifiying the "root" file, e.g.:
100+
# may contain a "magic line" specifying the "root" file, e.g.:
101101
#
102102
# % !TEX root = main.tex
103103
#

runtime/colors/README.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,11 +111,11 @@ please check the following items:
111111
- Do not use hard coded escape sequences, these will not work in other
112112
terminals. Always use #RRGGBB for the GUI.
113113

114-
- When targetting 8-16 colors terminals, don't count on "darkblue" to be blue
114+
- When targeting 8-16 colors terminals, don't count on "darkblue" to be blue
115115
and dark, or on "2" to be even vaguely reddish. Names are more portable
116116
than numbers, though.
117117

118-
- When targetting 256 colors terminals, prefer colors 16-255 to colors 0-15
118+
- When targeting 256 colors terminals, prefer colors 16-255 to colors 0-15
119119
for the same reason.
120120

121121
- Typographic attributes (bold, italic, underline, reverse, etc.) are not

runtime/doc/builtin.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10143,9 +10143,9 @@ trim({text} [, {mask} [, {dir}]]) *trim()*
1014310143
Return {text} as a String where any character in {mask} is
1014410144
removed from the beginning and/or end of {text}.
1014510145

10146-
If {mask} is not given, {mask} is all characters up to 0x20,
10147-
which includes Tab, space, NL and CR, plus the non-breaking
10148-
space character 0xa0.
10146+
If {mask} is not given, or is an empty string, {mask} is all
10147+
characters up to 0x20, which includes Tab, space, NL and CR,
10148+
plus the non-breaking space character 0xa0.
1014910149

1015010150
The optional {dir} argument specifies where to remove the
1015110151
characters:

runtime/doc/index.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1119,12 +1119,12 @@ commands in wildmenu mode (see 'wildmenu')
11191119
<Left> select the previous match / move up to parent
11201120
<Right> select the next match / move down to submenu
11211121
<CR> move into submenu when doing menu completion
1122+
CTRL-E stop completion and go back to original text
1123+
CTRL-Y accept selected match and stop completion
11221124
other stop completion and insert the typed character
11231125

11241126
commands in wildmenu mode with 'wildoptions' set to "pum"
11251127

1126-
CTRL-E stop completion and go back to original text
1127-
CTRL-Y accept selected match and stop completion
11281128
<PageUp> select a match several entries back
11291129
<PageDown> select a match several entries forward
11301130

runtime/doc/options.txt

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9397,6 +9397,8 @@ A jump table for the options with a short description can be found at |Q_op|.
93979397
The character is not recognized when used inside a macro. See
93989398
'wildcharm' for that.
93999399
Some keys will not work, such as CTRL-C, <CR> and Enter.
9400+
<Esc> can be used, but hitting it twice in a row will still exit
9401+
command-line as a failsafe measure.
94009402
Although 'wc' is a number option, you can set it to a special key: >
94019403
:set wc=<Tab>
94029404
< NOTE: This option is set to the Vi default value when 'compatible' is
@@ -9465,6 +9467,10 @@ A jump table for the options with a short description can be found at |Q_op|.
94659467
CTRL-N - go to the next entry
94669468
<CR> - in menu completion, when the cursor is just after a
94679469
dot: move into a submenu.
9470+
CTRL-E - end completion, go back to what was there before
9471+
selecting a match.
9472+
CTRL-Y - accept the currently selected match and stop
9473+
completion.
94689474

94699475
When not using the popup menu for command line completion, the
94709476
following keys have special meanings:
@@ -9483,10 +9489,6 @@ A jump table for the options with a short description can be found at |Q_op|.
94839489
parent directory or parent menu.
94849490
<Right> - in filename/menu name completion: move into a
94859491
subdirectory or submenu.
9486-
CTRL-E - end completion, go back to what was there before
9487-
selecting a match.
9488-
CTRL-Y - accept the currently selected match and stop
9489-
completion.
94909492

94919493
This makes the menus accessible from the console |console-menus|.
94929494

runtime/doc/starting.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*starting.txt* For Vim version 9.0. Last change: 2023 May 30
1+
*starting.txt* For Vim version 9.0. Last change: 2023 Oct 17
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -348,7 +348,7 @@ a slash. Thus "-R" means recovery and "-/R" readonly.
348348
Start logging and write entries to {filename}.
349349
This works like calling `ch_logfile({filename}, 'ao')` very
350350
early during startup.
351-
{only available with the |+eval| feature}
351+
{only available with the |+eval| and |+channel| feature}
352352

353353
*-D*
354354
-D Debugging. Go to debugging mode when executing the first

runtime/indent/cdl.vim

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ endif
2121

2222
" find out if an "...=..." expression is an assignment (or a conditional)
2323
" it scans 'line' first, and then the previous lines
24-
fun! CdlAsignment(lnum, line)
24+
fun! CdlAssignment(lnum, line)
2525
let f = -1
2626
let lnum = a:lnum
2727
let line = a:line
@@ -90,7 +90,7 @@ fun! CdlGetIndent(lnum)
9090
end
9191
end
9292

93-
" remove members [a] of [b]:[c]... (inicio remainds valid)
93+
" remove members [a] of [b]:[c]... (inicio remains valid)
9494
let line = substitute(line, '\c\(\[[^]]*]\(\s*of\s*\|:\)*\)\+', ' ', 'g')
9595
while 1
9696
" search for the next interesting element
@@ -111,7 +111,7 @@ fun! CdlGetIndent(lnum)
111111
else " c == '='
112112
" if it is an assignment increase indent
113113
if f == -1 " we don't know yet, find out
114-
let f = CdlAsignment(lnum, strpart(line, 0, inicio))
114+
let f = CdlAssignment(lnum, strpart(line, 0, inicio))
115115
end
116116
if f == 1 " formula increase it
117117
let ind = ind + shiftwidth()
@@ -125,7 +125,7 @@ fun! CdlGetIndent(lnum)
125125
let ind = ind - shiftwidth()
126126
elseif match(thisline, '^\s*=') >= 0
127127
if f == -1 " we don't know yet if is an assignment, find out
128-
let f = CdlAsignment(lnum, "")
128+
let f = CdlAssignment(lnum, "")
129129
end
130130
if f == 1 " formula increase it
131131
let ind = ind + shiftwidth()

0 commit comments

Comments
 (0)