mirror of
https://github.com/neovim/neovim.git
synced 2026-03-31 04:42:03 +00:00
Problem:
Using nested `vim.Pos` objects to represent each `vim.Range` object
requires 3 tables for each `vim.Range`, which may be undesirable in
performance critical code. Using key-value tables performs worse than
using array-like tables (lists).
Solution:
Use array-like indices for the internal fields of both `vim.Pos` and
`vim.Range` objects. Use a metatable to allow users to access them like
if they were key-value tables.
---
Problem:
The `vim.Pos` conversion interface for `extmark` indexing does not take
into account the difference in how a position on top of a newline is
represented in `vim.Pos` and `extmark`.
- `vim.Pos`: for a newline at the end of row `n`, `row` takes the value
`n + 1` and `col` takes the value `0`.
- `extmark`: for a newline at the end of for `n`, `row` takes the value
`n` and `col` takes the value `#row_text`.
Solution:
Handle this in the `extmark` interface.
---
Problem:
Not all `to_xxx` interfaces have wrapping objects like `to_lsp`.
Solution:
Return unwrapped values in `to_xxx` interfaces where it makes sense.
Accept unwrapped values in "from" interfaces where it makes sense.
---
Problem:
`start` and `end` positions have different semantics, so they can't be
compared. `vim.Range` relies on comparing the `end` and `start` of two
ranges to decide which one is greater, which doesn't work as expected
because this of the different semantics.
For example, for the ranges:
local a = {
start = { row = 0, col = 22, },
end_ = { row = 0, col = 24, },
}
local b = {
start = { row = 0, col = 17, },
end_ = { row = 0, col = 22, },
}
in this code:
local foo, bar = "foo", "bar"
-- |---||-|
-- b a
The range `b` is smaller than the range `a`, but the current
implementation compares `b._end` (`col = 22`) and `a.start` (`col = 22`)
and concludes that, since `b.col` is not smaller than `a.col`, `b`
should be greater than `a`.
Solution:
- Use a `to_inclusive_pos` to normalize end positions inside of
`vim.Range` whenever a comparison between a start and an end position
is necessary.
243 lines
6.1 KiB
Lua
243 lines
6.1 KiB
Lua
---@brief
|
|
---
|
|
--- EXPERIMENTAL: This API may change in the future. Its semantics are not yet finalized.
|
|
--- Subscribe to https://github.com/neovim/neovim/issues/25509
|
|
--- to stay updated or contribute to its development.
|
|
---
|
|
--- Provides operations to compare, calculate, and convert positions represented by |vim.Pos|
|
|
--- objects.
|
|
|
|
local api = vim.api
|
|
local validate = vim.validate
|
|
|
|
--- Represents a well-defined position.
|
|
---
|
|
--- A |vim.Pos| object contains the {row} and {col} coordinates of a position.
|
|
--- To create a new |vim.Pos| object, call `vim.pos()`.
|
|
---
|
|
--- Example:
|
|
--- ```lua
|
|
--- local pos1 = vim.pos(3, 5)
|
|
--- local pos2 = vim.pos(4, 0)
|
|
---
|
|
--- -- Operators are overloaded for comparing two `vim.Pos` objects.
|
|
--- if pos1 < pos2 then
|
|
--- print("pos1 comes before pos2")
|
|
--- end
|
|
---
|
|
--- if pos1 ~= pos2 then
|
|
--- print("pos1 and pos2 are different positions")
|
|
--- end
|
|
--- ```
|
|
---
|
|
--- It may include optional fields that enable additional capabilities,
|
|
--- such as format conversions.
|
|
---
|
|
---@class vim.Pos
|
|
---@field row integer 0-based byte index.
|
|
---@field col integer 0-based byte index.
|
|
---
|
|
--- Optional buffer handle.
|
|
---
|
|
--- When specified, it indicates that this position belongs to a specific buffer.
|
|
--- This field is required when performing position conversions.
|
|
---@field buf? integer
|
|
---@field private [1] integer underlying representation of row
|
|
---@field private [2] integer underlying representation of col
|
|
---@field private [3] integer underlying representation of buf
|
|
local Pos = {}
|
|
|
|
---@private
|
|
---@param pos vim.Pos
|
|
---@param key any
|
|
function Pos.__index(pos, key)
|
|
if key == 'row' then
|
|
return pos[1]
|
|
elseif key == 'col' then
|
|
return pos[2]
|
|
elseif key == 'buf' then
|
|
return pos[3]
|
|
end
|
|
|
|
return Pos[key]
|
|
end
|
|
|
|
---@class vim.Pos.Optional
|
|
---@inlinedoc
|
|
---@field buf? integer
|
|
|
|
---@package
|
|
---@param row integer
|
|
---@param col integer
|
|
---@param opts? vim.Pos.Optional
|
|
function Pos.new(row, col, opts)
|
|
validate('row', row, 'number')
|
|
validate('col', col, 'number')
|
|
validate('opts', opts, 'table', true)
|
|
|
|
opts = opts or {}
|
|
|
|
---@type vim.Pos
|
|
local self = setmetatable({
|
|
row,
|
|
col,
|
|
opts.buf,
|
|
}, Pos)
|
|
|
|
return self
|
|
end
|
|
|
|
---@param p1 vim.Pos First position to compare.
|
|
---@param p2 vim.Pos Second position to compare.
|
|
---@return integer
|
|
--- 1: a > b
|
|
--- 0: a == b
|
|
--- -1: a < b
|
|
local function cmp_pos(p1, p2)
|
|
if p1.row == p2.row then
|
|
if p1.col > p2.col then
|
|
return 1
|
|
elseif p1.col < p2.col then
|
|
return -1
|
|
else
|
|
return 0
|
|
end
|
|
elseif p1.row > p2.row then
|
|
return 1
|
|
end
|
|
|
|
return -1
|
|
end
|
|
|
|
---@private
|
|
function Pos.__lt(...)
|
|
return cmp_pos(...) == -1
|
|
end
|
|
|
|
---@private
|
|
function Pos.__le(...)
|
|
return cmp_pos(...) ~= 1
|
|
end
|
|
|
|
---@private
|
|
function Pos.__eq(...)
|
|
return cmp_pos(...) == 0
|
|
end
|
|
|
|
--- TODO(ofseed): Make it work for unloaded buffers. Check get_line() in vim.lsp.util.
|
|
---@param buf integer
|
|
---@param row integer
|
|
local function get_line(buf, row)
|
|
return api.nvim_buf_get_lines(buf, row, row + 1, true)[1]
|
|
end
|
|
|
|
--- Converts |vim.Pos| to `lsp.Position`.
|
|
---
|
|
--- Example:
|
|
--- ```lua
|
|
--- -- `buf` is required for conversion to LSP position.
|
|
--- local buf = vim.api.nvim_get_current_buf()
|
|
--- local pos = vim.pos(3, 5, { buf = buf })
|
|
---
|
|
--- -- Convert to LSP position, you can call it in a method style.
|
|
--- local lsp_pos = pos:lsp('utf-16')
|
|
--- ```
|
|
---@param pos vim.Pos
|
|
---@param position_encoding lsp.PositionEncodingKind
|
|
function Pos.to_lsp(pos, position_encoding)
|
|
validate('pos', pos, 'table')
|
|
validate('position_encoding', position_encoding, 'string')
|
|
|
|
local buf = assert(pos.buf, 'position is not a buffer position')
|
|
local row, col = pos.row, pos.col
|
|
-- When on the first character,
|
|
-- we can ignore the difference between byte and character.
|
|
if col > 0 then
|
|
col = vim.str_utfindex(get_line(buf, row), position_encoding, col, false)
|
|
end
|
|
|
|
---@type lsp.Position
|
|
return { line = row, character = col }
|
|
end
|
|
|
|
--- Creates a new |vim.Pos| from `lsp.Position`.
|
|
---
|
|
--- Example:
|
|
--- ```lua
|
|
--- local buf = vim.api.nvim_get_current_buf()
|
|
--- local lsp_pos = {
|
|
--- line = 3,
|
|
--- character = 5
|
|
--- }
|
|
---
|
|
--- -- `buf` is mandatory, as LSP positions are always associated with a buffer.
|
|
--- local pos = vim.pos.lsp(buf, lsp_pos, 'utf-16')
|
|
--- ```
|
|
---@param buf integer
|
|
---@param pos lsp.Position
|
|
---@param position_encoding lsp.PositionEncodingKind
|
|
function Pos.lsp(buf, pos, position_encoding)
|
|
validate('buf', buf, 'number')
|
|
validate('pos', pos, 'table')
|
|
validate('position_encoding', position_encoding, 'string')
|
|
|
|
local row, col = pos.line, pos.character
|
|
-- When on the first character,
|
|
-- we can ignore the difference between byte and character.
|
|
if col > 0 then
|
|
-- `strict_indexing` is disabled, because LSP responses are asynchronous,
|
|
-- and the buffer content may have changed, causing out-of-bounds errors.
|
|
col = vim.str_byteindex(get_line(buf, row), position_encoding, col, false)
|
|
end
|
|
|
|
return Pos.new(row, col, { buf = buf })
|
|
end
|
|
|
|
--- Converts |vim.Pos| to cursor position (see |api-indexing|).
|
|
---@param pos vim.Pos
|
|
---@return integer, integer
|
|
function Pos.to_cursor(pos)
|
|
return pos.row + 1, pos.col
|
|
end
|
|
|
|
--- Creates a new |vim.Pos| from cursor position (see |api-indexing|).
|
|
---@param pos [integer, integer]
|
|
---@param opts vim.Pos.Optional|nil
|
|
function Pos.cursor(pos, opts)
|
|
return Pos.new(pos[1] - 1, pos[2], opts)
|
|
end
|
|
|
|
--- Converts |vim.Pos| to extmark position (see |api-indexing|).
|
|
---@param pos vim.Pos
|
|
---@return integer, integer
|
|
function Pos.to_extmark(pos)
|
|
local line_num = #api.nvim_buf_get_lines(pos.buf, 0, -1, true)
|
|
|
|
local row = pos.row
|
|
local col = pos.col
|
|
if pos.col == 0 and pos.row == line_num then
|
|
row = row - 1
|
|
col = #get_line(pos.buf, row)
|
|
end
|
|
|
|
return row, col
|
|
end
|
|
|
|
--- Creates a new |vim.Pos| from extmark position (see |api-indexing|).
|
|
---@param row integer
|
|
---@param col integer
|
|
---@param opts vim.Pos.Optional|nil
|
|
function Pos.extmark(row, col, opts)
|
|
return Pos.new(row, col, opts)
|
|
end
|
|
|
|
-- Overload `Range.new` to allow calling this module as a function.
|
|
setmetatable(Pos, {
|
|
__call = function(_, ...)
|
|
return Pos.new(...)
|
|
end,
|
|
})
|
|
---@cast Pos +fun(row: integer, col: integer, opts: vim.Pos.Optional?): vim.Pos
|
|
|
|
return Pos
|