docs(eval): update param types of prompt-buffer functions (#30392)

This commit is contained in:
glepnir 2024-09-16 18:33:35 +08:00 committed by GitHub
parent 549c00c791
commit a0d8c2b86e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 11 additions and 11 deletions

View File

@ -6703,7 +6703,7 @@ function vim.fn.printf(fmt, expr1) end
--- If the buffer doesn't exist or isn't a prompt buffer, an empty --- If the buffer doesn't exist or isn't a prompt buffer, an empty
--- string is returned. --- string is returned.
--- ---
--- @param buf any --- @param buf integer|string
--- @return any --- @return any
function vim.fn.prompt_getprompt(buf) end function vim.fn.prompt_getprompt(buf) end
@ -6738,8 +6738,8 @@ function vim.fn.prompt_getprompt(buf) end
--- endfunc --- endfunc
--- call prompt_setcallback(bufnr(), function('s:TextEntered')) --- call prompt_setcallback(bufnr(), function('s:TextEntered'))
--- ---
--- @param buf any --- @param buf integer|string
--- @param expr any --- @param expr string|function
--- @return any --- @return any
function vim.fn.prompt_setcallback(buf, expr) end function vim.fn.prompt_setcallback(buf, expr) end
@ -6751,8 +6751,8 @@ function vim.fn.prompt_setcallback(buf, expr) end
--- mode. Without setting a callback Vim will exit Insert mode, --- mode. Without setting a callback Vim will exit Insert mode,
--- as in any buffer. --- as in any buffer.
--- ---
--- @param buf any --- @param buf integer|string
--- @param expr any --- @param expr string|function
--- @return any --- @return any
function vim.fn.prompt_setinterrupt(buf, expr) end function vim.fn.prompt_setinterrupt(buf, expr) end
@ -6763,8 +6763,8 @@ function vim.fn.prompt_setinterrupt(buf, expr) end
--- call prompt_setprompt(bufnr(''), 'command: ') --- call prompt_setprompt(bufnr(''), 'command: ')
--- < --- <
--- ---
--- @param buf any --- @param buf integer|string
--- @param text any --- @param text string
--- @return any --- @return any
function vim.fn.prompt_setprompt(buf, text) end function vim.fn.prompt_setprompt(buf, text) end

View File

@ -8044,7 +8044,7 @@ M.funcs = {
]=], ]=],
name = 'prompt_getprompt', name = 'prompt_getprompt',
params = { { 'buf', 'any' } }, params = { { 'buf', 'integer|string' } },
signature = 'prompt_getprompt({buf})', signature = 'prompt_getprompt({buf})',
}, },
prompt_setcallback = { prompt_setcallback = {
@ -8084,7 +8084,7 @@ M.funcs = {
]=], ]=],
name = 'prompt_setcallback', name = 'prompt_setcallback',
params = { { 'buf', 'any' }, { 'expr', 'any' } }, params = { { 'buf', 'integer|string' }, { 'expr', 'string|function' } },
signature = 'prompt_setcallback({buf}, {expr})', signature = 'prompt_setcallback({buf}, {expr})',
}, },
prompt_setinterrupt = { prompt_setinterrupt = {
@ -8101,7 +8101,7 @@ M.funcs = {
]=], ]=],
name = 'prompt_setinterrupt', name = 'prompt_setinterrupt',
params = { { 'buf', 'any' }, { 'expr', 'any' } }, params = { { 'buf', 'integer|string' }, { 'expr', 'string|function' } },
signature = 'prompt_setinterrupt({buf}, {expr})', signature = 'prompt_setinterrupt({buf}, {expr})',
}, },
prompt_setprompt = { prompt_setprompt = {
@ -8116,7 +8116,7 @@ M.funcs = {
< <
]=], ]=],
name = 'prompt_setprompt', name = 'prompt_setprompt',
params = { { 'buf', 'any' }, { 'text', 'any' } }, params = { { 'buf', 'integer|string' }, { 'text', 'string' } },
signature = 'prompt_setprompt({buf}, {text})', signature = 'prompt_setprompt({buf}, {text})',
}, },
pum_getpos = { pum_getpos = {