Merge #40087 from ofseed/pos-util-follow-up

feat(pos): create a cursor position by using the current of a window
This commit is contained in:
Justin M. Keyes
2026-06-14 12:42:52 -04:00
committed by GitHub
7 changed files with 55 additions and 19 deletions

View File

@@ -4500,15 +4500,24 @@ by |vim.Pos| objects.
cursor({buf}, {pos}) *vim.pos.cursor()*
Creates a new |vim.Pos| from cursor position (see |api-indexing|).
If {pos} is omitted, the first argument is treated as {win} instead of
{buf}, and the current cursor position of {win} is used.
Example: >lua
local buf = vim.api.nvim_win_get_buf(0)
local cursor_pos = vim.api.nvim_win_get_cursor(0)
local pos = vim.pos.cursor(0, cursor_pos)
local pos = vim.pos.cursor(buf, cursor_pos)
-- This is equivalent:
local pos = vim.pos.cursor(0)
<
Parameters: ~
• {buf} (`integer`)
• {pos} (`[integer, integer]`) (lnum, col) tuple
Overloads: ~
• `fun(win: integer): vim.Pos`
Return: ~
(`vim.Pos`) See |vim.Pos|.
@@ -4591,16 +4600,15 @@ to_cursor({pos}) *vim.pos.to_cursor()*
local pos = vim.pos(0, 3, 5)
-- Convert to cursor position, you can call it in a method style.
local cursor_pos = { pos:to_cursor() }
local cursor_pos = pos:to_cursor()
vim.api.nvim_win_set_cursor(0, cursor_pos)
<
Parameters: ~
• {pos} (`vim.Pos`) See |vim.Pos|.
Return (multiple): ~
(`integer`) lnum
(`integer`) col
Return: ~
(`[integer, integer]`) (lnum, col) tuple
to_extmark({pos}) *vim.pos.to_extmark()*
Converts |vim.Pos| to extmark position (see |api-indexing|).

View File

@@ -35,6 +35,8 @@ LUA
• vim.pos, vim.range always require the `buf` parameter.
• range.cursor() and range.to_cursor() are removed.
Use range.mark() and range.to_mark() instead.
• pos.to_cursor() returns a (`row,` `col)` tuple
instead of returning them as separate values.
DIAGNOSTICS

View File

@@ -51,7 +51,7 @@ local function ctx_is_valid(ctx)
return false
end
local cur_pos = vim.pos.cursor(bufnr, api.nvim_win_get_cursor(0))
local cur_pos = vim.pos.cursor(0)
local pos = vim.pos.lsp(bufnr, p, enc)
return cur_pos == pos
end
@@ -222,7 +222,7 @@ local function get_locations(method, context, opts)
)
end
local pos = opts.pos or vim.pos.cursor(0, api.nvim_win_get_cursor(0))
local pos = opts.pos or vim.pos.cursor(0)
local buf = pos.buf
local clients = lsp.get_clients({ method = method, bufnr = buf })

View File

@@ -498,7 +498,7 @@ function M.run(opts)
local winid = api.nvim_get_current_win()
local bufnr = api.nvim_win_get_buf(winid)
local pos = vim.pos.cursor(bufnr, api.nvim_win_get_cursor(winid))
local pos = vim.pos.cursor(winid)
local params = {
textDocument = vim.lsp.util.make_text_document_params(bufnr),
}

View File

@@ -1811,10 +1811,9 @@ end
---@see https://microsoft.github.io/language-server-protocol/specifications/specification-current/#textDocumentPositionParams
function M.make_position_params(win, position_encoding)
win = win or 0
local buf = api.nvim_win_get_buf(win)
return {
textDocument = M.make_text_document_params(buf),
position = vim.pos.cursor(buf, api.nvim_win_get_cursor(win)):to_lsp(position_encoding),
textDocument = M.make_text_document_params(api.nvim_win_get_buf(win)),
position = vim.pos.cursor(win):to_lsp(position_encoding),
}
end

View File

@@ -153,32 +153,50 @@ end
--- local pos = vim.pos(0, 3, 5)
---
--- -- Convert to cursor position, you can call it in a method style.
--- local cursor_pos = { pos:to_cursor() }
--- local cursor_pos = pos:to_cursor()
--- vim.api.nvim_win_set_cursor(0, cursor_pos)
--- ```
---@param pos vim.Pos
---@return integer lnum, integer col
---@return [integer, integer] (lnum, col) tuple
function M.to_cursor(pos)
validate('pos', pos, 'table')
return util.to_mark(pos[1], pos[2])
return { util.to_mark(pos[1], pos[2]) }
end
--- Creates a new |vim.Pos| from cursor position (see |api-indexing|).
---
--- If {pos} is omitted, the first argument is treated as {win} instead of {buf},
--- and the current cursor position of {win} is used.
---
--- Example:
--- ```lua
--- local buf = vim.api.nvim_win_get_buf(0)
--- local cursor_pos = vim.api.nvim_win_get_cursor(0)
--- local pos = vim.pos.cursor(0, cursor_pos)
--- local pos = vim.pos.cursor(buf, cursor_pos)
--- -- This is equivalent:
--- local pos = vim.pos.cursor(0)
--- ```
---@param buf integer
---@param pos [integer, integer] (lnum, col) tuple
---@return vim.Pos
---@overload fun(win: integer): vim.Pos
function M.cursor(buf, pos)
validate('buf', buf, 'number')
validate('pos', pos, 'table')
validate('pos', pos, 'table', true)
if buf == 0 then
buf = api.nvim_get_current_buf()
if pos then
validate('buf', buf, 'number')
if buf == 0 then
buf = api.nvim_get_current_buf()
end
else
local win = buf
validate('win', win, 'number')
if win == 0 then
win = api.nvim_get_current_win()
end
buf = api.nvim_win_get_buf(win)
pos = api.nvim_win_get_cursor(win)
end
return M.new(buf, util.from_mark(pos[1], pos[2]))

View File

@@ -30,6 +30,15 @@ describe('vim.pos', function()
eq(buf, pos[3])
end)
it('creates a position from the window cursor', function()
local pos, buf = exec_lua(function()
vim.api.nvim_buf_set_lines(0, 0, -1, true, { 'first', 'second' })
vim.api.nvim_win_set_cursor(0, { 2, 3 })
return vim.pos.cursor(0), vim.api.nvim_get_current_buf()
end)
eq({ 1, 3, buf }, pos)
end)
it('comparisons by overloaded operators', function()
local buf = exec_lua(function()
return vim.api.nvim_create_buf(false, true)