Skip to content

Commit 39ac371

Browse files
dundargocechasnovskifamiugpandersguilhas07
authored andcommitted
docs: various fixes (neovim#28208)
Co-authored-by: Evgeni Chasnovski <[email protected]> Co-authored-by: Famiu Haque <[email protected]> Co-authored-by: Gregory Anders <[email protected]> Co-authored-by: Guilherme Soares <[email protected]> Co-authored-by: Jannik Buhr <[email protected]> Co-authored-by: thomaswuhoileong <[email protected]> Co-authored-by: tom-anders <[email protected]> Co-authored-by: zeertzjq <[email protected]>
1 parent 5017180 commit 39ac371

File tree

14 files changed

+32
-22
lines changed

14 files changed

+32
-22
lines changed

.mailmap

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,12 @@ Anmol Sethi <[email protected]> <[email protected]>
88
BK1603 <[email protected]> Shreyansh Chouhan
99
Billy Su <[email protected]> Billy SU
1010
11-
1211
1312
Chris Kipp <[email protected]> ckipp01
1413
1514
Cédric Barreteau <> <[email protected]>
1615
1716
18-
19-
dundargoc <[email protected]> Dundar Goc
2017
Eisuke Kawashima <[email protected]> E Kawashima
2118
ElPiloto <[email protected]> Luis Piloto
2219
Eliseo Martínez <[email protected]> Eliseo Martínez
@@ -38,6 +35,7 @@ J Phani Mahesh <[email protected]> <[email protected]>
3835
3936
4037
Jacques Germishuys <[email protected]> <[email protected]>
38+
Jaehwang Jung <[email protected]> Jaehwang Jerry Jung
4139
4240
4341
@@ -57,6 +55,8 @@ Kwon-Young Choi <[email protected]> Kwon-Young
5755
5856
5957
58+
59+
Luuk van Baal <[email protected]> luukvbaal
6060
6161
Marvim the Paranoid Android <[email protected]> marvim
6262
Mateusz Czapliński <[email protected]> Mateusz Czaplinski
@@ -111,14 +111,20 @@ Yorick Peterse <[email protected]> <[email protected]>
111111
112112
ZyX <[email protected]> Nikolai Aleksandrovich Pavlov
113113
aph <[email protected]> Ashley Hewson
114+
114115
butwerenotthereyet <[email protected]> We're Yet
115116
chemzqm <[email protected]> Qiming zhao
116117
chentau <[email protected]> Tony Chen
117118
dedmass <[email protected]> Carlo Abelli
119+
120+
dundargoc <[email protected]> Dundar Goc
118121
119122
120123
glacambre <[email protected]> <me@r4>
121124
glacambre <[email protected]> Ghjuvan Lacambre
125+
glepnir <[email protected]> Raphael
126+
glepnir <[email protected]> Raphael
127+
glepnir <[email protected]> Raphael
122128
123129
124130

runtime/doc/options.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1442,7 +1442,7 @@ A jump table for the options with a short description can be found at |Q_op|.
14421442
'commentstring' 'cms' string (default "")
14431443
local to buffer
14441444
A template for a comment. The "%s" in the value is replaced with the
1445-
comment text. For example, C uses "/*%s*/". Currently only used to
1445+
comment text. For example, C uses "/*%s*/". Used for |commenting| and to
14461446
add markers for folding, see |fold-marker|.
14471447

14481448
*'complete'* *'cpt'* *E535*

runtime/doc/vvars.txt

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,10 @@ v:collate
6060

6161
*v:completed_item* *completed_item-variable*
6262
v:completed_item
63-
Dictionary containing the most recent |complete-items| after
64-
|CompleteDone|. Empty if the completion failed, or after
65-
leaving and re-entering insert mode.
63+
Dictionary containing the |complete-items| for the most
64+
recently completed word after |CompleteDone|. Empty if the
65+
completion failed, or after leaving and re-entering insert
66+
mode.
6667
Note: Plugins can modify the value to emulate the builtin
6768
|CompleteDone| event behavior.
6869

runtime/ftplugin/tutor.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ setlocal noundofile
1919
setlocal keywordprg=:help
2020
setlocal iskeyword=@,-,_
2121

22-
" The user will have to enable the folds himself, but we provide the foldexpr
22+
" The user will have to enable the folds themself, but we provide the foldexpr
2323
" function.
2424
setlocal foldmethod=manual
2525
setlocal foldexpr=tutor#TutorFolds()

runtime/lua/vim/_comment.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ local function make_comment_check(parts)
8080
-- <possible whitespace> <left> <anything> <right> <possible whitespace>
8181
local nonblank_regex = '^%s-' .. l_esc .. '.*' .. r_esc .. '%s-$'
8282

83-
-- Commented blank line can have any amoung of whitespace around parts
83+
-- Commented blank line can have any amount of whitespace around parts
8484
local blank_regex = '^%s-' .. vim.trim(l_esc) .. '%s*' .. vim.trim(r_esc) .. '%s-$'
8585

8686
return function(line)

runtime/lua/vim/_meta/options.lua

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

runtime/lua/vim/_meta/vimfn.lua

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

runtime/lua/vim/_meta/vvars.lua

Lines changed: 4 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

runtime/lua/vim/termcap.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ local M = {}
1212
--- emulator supports the XTGETTCAP sequence.
1313
---
1414
--- @param caps string|table A terminal capability or list of capabilities to query
15-
--- @param cb fun(cap:string, found:bool, seq:string?) Callback function which is called for
15+
--- @param cb fun(cap:string, found:boolean, seq:string?) Callback function which is called for
1616
--- each capability in {caps}. {found} is set to true if the capability was found or false
1717
--- otherwise. {seq} is the control sequence for the capability if found, or nil for
1818
--- boolean capabilities.

src/nvim/eval.lua

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7902,6 +7902,7 @@ M.funcs = {
79027902
name = 'printf',
79037903
params = { { 'fmt', 'any' }, { 'expr1', 'any' } },
79047904
signature = 'printf({fmt}, {expr1} ...)',
7905+
returns = 'string',
79057906
},
79067907
prompt_getprompt = {
79077908
args = 1,

0 commit comments

Comments
 (0)