diff options
author | Jaehwang Jung <tomtomjhj@gmail.com> | 2023-03-04 22:05:46 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-04 13:05:46 +0000 |
commit | 1f07307aeb6564fb794921cc1b2879f84a822921 (patch) | |
tree | 1deb8f905cee146c56c144750f773a6a23045ed4 | |
parent | ccd2cc1abd69f677edabd0b66dfd9689eeee54b9 (diff) | |
download | rneovim-1f07307aeb6564fb794921cc1b2879f84a822921.tar.gz rneovim-1f07307aeb6564fb794921cc1b2879f84a822921.tar.bz2 rneovim-1f07307aeb6564fb794921cc1b2879f84a822921.zip |
docs(inspect): number → integer (#22511)
-rw-r--r-- | runtime/doc/lua.txt | 20 | ||||
-rw-r--r-- | runtime/lua/vim/_inspector.lua | 14 |
2 files changed, 17 insertions, 17 deletions
diff --git a/runtime/doc/lua.txt b/runtime/doc/lua.txt index 38ddff13bd..87498c7599 100644 --- a/runtime/doc/lua.txt +++ b/runtime/doc/lua.txt @@ -1542,11 +1542,11 @@ inspect_pos({bufnr}, {row}, {col}, {filter}) *vim.inspect_pos()* Can also be pretty-printed with `:Inspect!`. *:Inspect!* Parameters: ~ - • {bufnr} (number|nil) defaults to the current buffer - • {row} (number|nil) row to inspect, 0-based. Defaults to the row of - the current cursor - • {col} (number|nil) col to inspect, 0-based. Defaults to the col of - the current cursor + • {bufnr} (integer|nil) defaults to the current buffer + • {row} (integer|nil) row to inspect, 0-based. Defaults to the row + of the current cursor + • {col} (integer|nil) col to inspect, 0-based. Defaults to the col + of the current cursor • {filter} (table|nil) a table with key-value pairs to filter the items • syntax (boolean): include syntax based highlight groups (defaults to true) @@ -1575,11 +1575,11 @@ show_pos({bufnr}, {row}, {col}, {filter}) *vim.show_pos()* Can also be shown with `:Inspect`. *:Inspect* Parameters: ~ - • {bufnr} (number|nil) defaults to the current buffer - • {row} (number|nil) row to inspect, 0-based. Defaults to the row of - the current cursor - • {col} (number|nil) col to inspect, 0-based. Defaults to the col of - the current cursor + • {bufnr} (integer|nil) defaults to the current buffer + • {row} (integer|nil) row to inspect, 0-based. Defaults to the row + of the current cursor + • {col} (integer|nil) col to inspect, 0-based. Defaults to the col + of the current cursor • {filter} (table|nil) see |vim.inspect_pos()| diff --git a/runtime/lua/vim/_inspector.lua b/runtime/lua/vim/_inspector.lua index bb6608421b..9e91597192 100644 --- a/runtime/lua/vim/_inspector.lua +++ b/runtime/lua/vim/_inspector.lua @@ -14,15 +14,15 @@ local defaults = { --- ---Can also be pretty-printed with `:Inspect!`. *:Inspect!* --- ----@param bufnr? number defaults to the current buffer ----@param row? number row to inspect, 0-based. Defaults to the row of the current cursor ----@param col? number col to inspect, 0-based. Defaults to the col of the current cursor +---@param bufnr? integer defaults to the current buffer +---@param row? integer row to inspect, 0-based. Defaults to the row of the current cursor +---@param col? integer col to inspect, 0-based. Defaults to the col of the current cursor ---@param filter? InspectorFilter (table|nil) a table with key-value pairs to filter the items --- - syntax (boolean): include syntax based highlight groups (defaults to true) --- - treesitter (boolean): include treesitter based highlight groups (defaults to true) --- - extmarks (boolean|"all"): include extmarks. When `all`, then extmarks without a `hl_group` will also be included (defaults to true) --- - semantic_tokens (boolean): include semantic tokens (defaults to true) ----@return {treesitter:table,syntax:table,extmarks:table,semantic_tokens:table,buffer:number,col:number,row:number} (table) a table with the following key-value pairs. Items are in "traversal order": +---@return {treesitter:table,syntax:table,extmarks:table,semantic_tokens:table,buffer:integer,col:integer,row:integer} (table) a table with the following key-value pairs. Items are in "traversal order": --- - treesitter: a list of treesitter captures --- - syntax: a list of syntax groups --- - semantic_tokens: a list of semantic tokens @@ -129,9 +129,9 @@ end --- ---Can also be shown with `:Inspect`. *:Inspect* --- ----@param bufnr? number defaults to the current buffer ----@param row? number row to inspect, 0-based. Defaults to the row of the current cursor ----@param col? number col to inspect, 0-based. Defaults to the col of the current cursor +---@param bufnr? integer defaults to the current buffer +---@param row? integer row to inspect, 0-based. Defaults to the row of the current cursor +---@param col? integer col to inspect, 0-based. Defaults to the col of the current cursor ---@param filter? InspectorFilter (table|nil) see |vim.inspect_pos()| function vim.show_pos(bufnr, row, col, filter) local items = vim.inspect_pos(bufnr, row, col, filter) |