mirror of
https://github.com/neovim/neovim.git
synced 2024-12-19 10:45:16 -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 value any
|
||||
--- @param options? table
|
||||
--- @param options? string
|
||||
--- @return any
|
||||
function vim.fn.setreg(regname, value, options) end
|
||||
|
||||
|
@ -9756,7 +9756,7 @@ M.funcs = {
|
||||
|
||||
]=],
|
||||
name = 'setreg',
|
||||
params = { { 'regname', 'string' }, { 'value', 'any' }, { 'options', 'table' } },
|
||||
params = { { 'regname', 'string' }, { 'value', 'any' }, { 'options', 'string' } },
|
||||
signature = 'setreg({regname}, {value} [, {options}])',
|
||||
},
|
||||
settabvar = {
|
||||
|
Loading…
Reference in New Issue
Block a user