mirror of
https://github.com/neovim/neovim.git
synced 2025-10-26 12:27:24 +00:00
fix(lua): @private => @nodoc #32587
Problem: vim.log.levels.* and vim.opt_local are marked `@private` but they should be `@nodoc`. Solution: Fix the annotation.
This commit is contained in:
@@ -922,11 +922,11 @@ function Option:prepend(value) end -- luacheck: no unused
|
||||
---@diagnostic disable-next-line:unused-local used for gen_vimdoc
|
||||
function Option:remove(value) end -- luacheck: no unused
|
||||
|
||||
---@private
|
||||
--- @nodoc
|
||||
vim.opt = create_option_accessor()
|
||||
|
||||
---@private
|
||||
--- @nodoc
|
||||
vim.opt_local = create_option_accessor('local')
|
||||
|
||||
---@private
|
||||
--- @nodoc
|
||||
vim.opt_global = create_option_accessor('global')
|
||||
|
||||
Reference in New Issue
Block a user