mirror of
https://github.com/neovim/neovim.git
synced 2024-12-20 03:05:11 -07:00
docs: fix type of setreg() argument {options} (#27631)
This commit is contained in:
parent
1a7c38caec
commit
7ad2e3c645
2
runtime/lua/vim/_meta/vimfn.lua
generated
2
runtime/lua/vim/_meta/vimfn.lua
generated
@ -8172,7 +8172,7 @@ function vim.fn.setqflist(list, action, what) end
|
|||||||
---
|
---
|
||||||
--- @param regname string
|
--- @param regname string
|
||||||
--- @param value any
|
--- @param value any
|
||||||
--- @param options? table
|
--- @param options? string
|
||||||
--- @return any
|
--- @return any
|
||||||
function vim.fn.setreg(regname, value, options) end
|
function vim.fn.setreg(regname, value, options) end
|
||||||
|
|
||||||
|
@ -9756,7 +9756,7 @@ M.funcs = {
|
|||||||
|
|
||||||
]=],
|
]=],
|
||||||
name = 'setreg',
|
name = 'setreg',
|
||||||
params = { { 'regname', 'string' }, { 'value', 'any' }, { 'options', 'table' } },
|
params = { { 'regname', 'string' }, { 'value', 'any' }, { 'options', 'string' } },
|
||||||
signature = 'setreg({regname}, {value} [, {options}])',
|
signature = 'setreg({regname}, {value} [, {options}])',
|
||||||
},
|
},
|
||||||
settabvar = {
|
settabvar = {
|
||||||
|
Loading…
Reference in New Issue
Block a user