neovim

Neovim text editor
git clone https://git.dasho.dev/neovim.git
Log | Files | Refs | README

commit a4a690e59753360e72b00cc301a0e6f624b70123
parent 523371b0447e7cc64374102547aed47556610d2d
Author: Yi Ming <ofseed@foxmail.com>
Date:   Mon, 18 Aug 2025 20:53:33 +0800

docs(lua): mark `vim.Pos.Optional` as optional

Diffstat:
Mruntime/lua/vim/pos.lua | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/runtime/lua/vim/pos.lua b/runtime/lua/vim/pos.lua @@ -56,7 +56,7 @@ Pos.__index = Pos ---@package ---@param row integer ---@param col integer ----@param opts vim.Pos.Optional +---@param opts? vim.Pos.Optional function Pos.new(row, col, opts) validate('row', row, 'number') validate('col', col, 'number')