mirror of
https://github.com/neovim/neovim.git
synced 2024-12-20 03:05:11 -07:00
refactor(diagnostic): remove bufnr parameter from open_float (#16587)
The overwhelming majority of use cases for `open_float` are to view diagnostics from the current buffer in a floating window. Thus, most use cases will just `0` or `nil` as the first argument, which makes the argument effectively useless and wasteful. In the cause of optimizing for the primary use case, make the `bufnr` parameter an optional parameter in the options table. This still allows using an alternative buffer for those that wish to do so, but makes the "primary" use case much easier. The old signature is preserved for backward compatibility, though it can likely be fully deprecated at some point.
This commit is contained in:
parent
ce4c8010cc
commit
5dcf2c77a9
@ -574,61 +574,64 @@ match({str}, {pat}, {groups}, {severity_map}, {defaults})
|
|||||||
diagnostic |diagnostic-structure| or `nil` if {pat} fails
|
diagnostic |diagnostic-structure| or `nil` if {pat} fails
|
||||||
to match {str}.
|
to match {str}.
|
||||||
|
|
||||||
open_float({bufnr}, {opts}) *vim.diagnostic.open_float()*
|
open_float({opts}, {...}) *vim.diagnostic.open_float()*
|
||||||
Show diagnostics in a floating window.
|
Show diagnostics in a floating window.
|
||||||
|
|
||||||
Parameters: ~
|
Parameters: ~
|
||||||
{bufnr} number|nil Buffer number. Defaults to the current
|
{opts} table|nil Configuration table with the same keys
|
||||||
buffer.
|
as |vim.lsp.util.open_floating_preview()| in
|
||||||
{opts} table|nil Configuration table with the same keys
|
addition to the following:
|
||||||
as |vim.lsp.util.open_floating_preview()| in
|
• bufnr: (number) Buffer number to show
|
||||||
addition to the following:
|
diagnostics from. Defaults to the current
|
||||||
• namespace: (number) Limit diagnostics to the
|
buffer.
|
||||||
given namespace
|
• namespace: (number) Limit diagnostics to the
|
||||||
• scope: (string, default "line") Show
|
given namespace
|
||||||
diagnostics from the whole buffer ("buffer"),
|
• scope: (string, default "line") Show diagnostics
|
||||||
the current cursor line ("line"), or the
|
from the whole buffer ("buffer"), the current
|
||||||
current cursor position ("cursor").
|
cursor line ("line"), or the current cursor
|
||||||
• pos: (number or table) If {scope} is "line" or
|
position ("cursor"). Shorthand versions are also
|
||||||
"cursor", use this position rather than the
|
accepted ("c" for "cursor", "l" for "line", "b"
|
||||||
cursor position. If a number, interpreted as a
|
for "buffer").
|
||||||
line number; otherwise, a (row, col) tuple.
|
• pos: (number or table) If {scope} is "line" or
|
||||||
• severity_sort: (default false) Sort diagnostics
|
"cursor", use this position rather than the
|
||||||
by severity. Overrides the setting from
|
cursor position. If a number, interpreted as a
|
||||||
|vim.diagnostic.config()|.
|
line number; otherwise, a (row, col) tuple.
|
||||||
• severity: See |diagnostic-severity|. Overrides
|
• severity_sort: (default false) Sort diagnostics
|
||||||
the setting from |vim.diagnostic.config()|.
|
by severity. Overrides the setting from
|
||||||
• header: (string or table) String to use as the
|
|vim.diagnostic.config()|.
|
||||||
header for the floating window. If a table, it
|
• severity: See |diagnostic-severity|. Overrides
|
||||||
is interpreted as a [text, hl_group] tuple.
|
the setting from |vim.diagnostic.config()|.
|
||||||
Overrides the setting from
|
• header: (string or table) String to use as the
|
||||||
|vim.diagnostic.config()|.
|
header for the floating window. If a table, it
|
||||||
• source: (string) Include the diagnostic source
|
is interpreted as a [text, hl_group] tuple.
|
||||||
in the message. One of "always" or "if_many".
|
Overrides the setting from
|
||||||
Overrides the setting from
|
|vim.diagnostic.config()|.
|
||||||
|vim.diagnostic.config()|.
|
• source: (string) Include the diagnostic source
|
||||||
• format: (function) A function that takes a
|
in the message. One of "always" or "if_many".
|
||||||
diagnostic as input and returns a string. The
|
Overrides the setting from
|
||||||
return value is the text used to display the
|
|vim.diagnostic.config()|.
|
||||||
diagnostic. Overrides the setting from
|
• format: (function) A function that takes a
|
||||||
|vim.diagnostic.config()|.
|
diagnostic as input and returns a string. The
|
||||||
• prefix: (function, string, or table) Prefix
|
return value is the text used to display the
|
||||||
each diagnostic in the floating window. If a
|
diagnostic. Overrides the setting from
|
||||||
function, it must have the signature
|
|vim.diagnostic.config()|.
|
||||||
(diagnostic, i, total) -> (string, string),
|
• prefix: (function, string, or table) Prefix each
|
||||||
where {i} is the index of the diagnostic being
|
diagnostic in the floating window. If a
|
||||||
evaluated and {total} is the total number of
|
function, it must have the signature
|
||||||
diagnostics displayed in the window. The
|
(diagnostic, i, total) -> (string, string),
|
||||||
function should return a string which is
|
where {i} is the index of the diagnostic being
|
||||||
prepended to each diagnostic in the window as
|
evaluated and {total} is the total number of
|
||||||
well as an (optional) highlight group which
|
diagnostics displayed in the window. The
|
||||||
will be used to highlight the prefix. If
|
function should return a string which is
|
||||||
{prefix} is a table, it is interpreted as a
|
prepended to each diagnostic in the window as
|
||||||
[text, hl_group] tuple as in |nvim_echo()|;
|
well as an (optional) highlight group which will
|
||||||
otherwise, if {prefix} is a string, it is
|
be used to highlight the prefix. If {prefix} is
|
||||||
prepended to each diagnostic in the window with
|
a table, it is interpreted as a [text, hl_group]
|
||||||
no highlight. Overrides the setting from
|
tuple as in |nvim_echo()|; otherwise, if
|
||||||
|vim.diagnostic.config()|.
|
{prefix} is a string, it is prepended to each
|
||||||
|
diagnostic in the window with no highlight.
|
||||||
|
Overrides the setting from
|
||||||
|
|vim.diagnostic.config()|.
|
||||||
|
|
||||||
Return: ~
|
Return: ~
|
||||||
tuple ({float_bufnr}, {win_id})
|
tuple ({float_bufnr}, {win_id})
|
||||||
|
@ -517,8 +517,8 @@ local function diagnostic_move_pos(opts, pos)
|
|||||||
local float_opts = type(float) == "table" and float or {}
|
local float_opts = type(float) == "table" and float or {}
|
||||||
vim.schedule(function()
|
vim.schedule(function()
|
||||||
M.open_float(
|
M.open_float(
|
||||||
vim.api.nvim_win_get_buf(win_id),
|
|
||||||
vim.tbl_extend("keep", float_opts, {
|
vim.tbl_extend("keep", float_opts, {
|
||||||
|
bufnr = vim.api.nvim_win_get_buf(win_id),
|
||||||
scope = "cursor",
|
scope = "cursor",
|
||||||
focus = false,
|
focus = false,
|
||||||
})
|
})
|
||||||
@ -1129,12 +1129,15 @@ end
|
|||||||
|
|
||||||
--- Show diagnostics in a floating window.
|
--- Show diagnostics in a floating window.
|
||||||
---
|
---
|
||||||
---@param bufnr number|nil Buffer number. Defaults to the current buffer.
|
|
||||||
---@param opts table|nil Configuration table with the same keys as
|
---@param opts table|nil Configuration table with the same keys as
|
||||||
--- |vim.lsp.util.open_floating_preview()| in addition to the following:
|
--- |vim.lsp.util.open_floating_preview()| in addition to the following:
|
||||||
|
--- - bufnr: (number) Buffer number to show diagnostics from.
|
||||||
|
--- Defaults to the current buffer.
|
||||||
--- - namespace: (number) Limit diagnostics to the given namespace
|
--- - namespace: (number) Limit diagnostics to the given namespace
|
||||||
--- - scope: (string, default "line") Show diagnostics from the whole buffer ("buffer"),
|
--- - scope: (string, default "line") Show diagnostics from the whole buffer ("buffer"),
|
||||||
--- the current cursor line ("line"), or the current cursor position ("cursor").
|
--- the current cursor line ("line"), or the current cursor position ("cursor").
|
||||||
|
--- Shorthand versions are also accepted ("c" for "cursor", "l" for "line", "b"
|
||||||
|
--- for "buffer").
|
||||||
--- - pos: (number or table) If {scope} is "line" or "cursor", use this position rather
|
--- - pos: (number or table) If {scope} is "line" or "cursor", use this position rather
|
||||||
--- than the cursor position. If a number, interpreted as a line number;
|
--- than the cursor position. If a number, interpreted as a line number;
|
||||||
--- otherwise, a (row, col) tuple.
|
--- otherwise, a (row, col) tuple.
|
||||||
@ -1163,15 +1166,21 @@ end
|
|||||||
--- highlight.
|
--- highlight.
|
||||||
--- Overrides the setting from |vim.diagnostic.config()|.
|
--- Overrides the setting from |vim.diagnostic.config()|.
|
||||||
---@return tuple ({float_bufnr}, {win_id})
|
---@return tuple ({float_bufnr}, {win_id})
|
||||||
function M.open_float(bufnr, opts)
|
function M.open_float(opts, ...)
|
||||||
vim.validate {
|
-- Support old (bufnr, opts) signature
|
||||||
bufnr = { bufnr, 'n', true },
|
local bufnr
|
||||||
opts = { opts, 't', true },
|
if opts == nil or type(opts) == "number" then
|
||||||
}
|
bufnr = opts
|
||||||
|
opts = ...
|
||||||
|
else
|
||||||
|
vim.validate {
|
||||||
|
opts = { opts, 't', true },
|
||||||
|
}
|
||||||
|
end
|
||||||
|
|
||||||
opts = opts or {}
|
opts = opts or {}
|
||||||
bufnr = get_bufnr(bufnr)
|
bufnr = get_bufnr(bufnr or opts.bufnr)
|
||||||
local scope = opts.scope or "line"
|
local scope = ({l = "line", c = "cursor", b = "buffer"})[opts.scope] or opts.scope or "line"
|
||||||
local lnum, col
|
local lnum, col
|
||||||
if scope == "line" or scope == "cursor" then
|
if scope == "line" or scope == "cursor" then
|
||||||
if not opts.pos then
|
if not opts.pos then
|
||||||
|
@ -1343,7 +1343,7 @@ describe('vim.diagnostic', function()
|
|||||||
}
|
}
|
||||||
vim.api.nvim_win_set_buf(0, diagnostic_bufnr)
|
vim.api.nvim_win_set_buf(0, diagnostic_bufnr)
|
||||||
vim.diagnostic.set(diagnostic_ns, diagnostic_bufnr, diagnostics)
|
vim.diagnostic.set(diagnostic_ns, diagnostic_bufnr, diagnostics)
|
||||||
local float_bufnr, winnr = vim.diagnostic.open_float(0, {header = "We're no strangers to love..."})
|
local float_bufnr, winnr = vim.diagnostic.open_float({header = "We're no strangers to love..."})
|
||||||
local lines = vim.api.nvim_buf_get_lines(float_bufnr, 0, -1, false)
|
local lines = vim.api.nvim_buf_get_lines(float_bufnr, 0, -1, false)
|
||||||
vim.api.nvim_win_close(winnr, true)
|
vim.api.nvim_win_close(winnr, true)
|
||||||
return lines
|
return lines
|
||||||
@ -1355,7 +1355,7 @@ describe('vim.diagnostic', function()
|
|||||||
}
|
}
|
||||||
vim.api.nvim_win_set_buf(0, diagnostic_bufnr)
|
vim.api.nvim_win_set_buf(0, diagnostic_bufnr)
|
||||||
vim.diagnostic.set(diagnostic_ns, diagnostic_bufnr, diagnostics)
|
vim.diagnostic.set(diagnostic_ns, diagnostic_bufnr, diagnostics)
|
||||||
local float_bufnr, winnr = vim.diagnostic.open_float(0, {header = {'You know the rules', 'Search'}})
|
local float_bufnr, winnr = vim.diagnostic.open_float({header = {'You know the rules', 'Search'}})
|
||||||
local lines = vim.api.nvim_buf_get_lines(float_bufnr, 0, -1, false)
|
local lines = vim.api.nvim_buf_get_lines(float_bufnr, 0, -1, false)
|
||||||
vim.api.nvim_win_close(winnr, true)
|
vim.api.nvim_win_close(winnr, true)
|
||||||
return lines
|
return lines
|
||||||
@ -1370,7 +1370,7 @@ describe('vim.diagnostic', function()
|
|||||||
}
|
}
|
||||||
vim.api.nvim_win_set_buf(0, diagnostic_bufnr)
|
vim.api.nvim_win_set_buf(0, diagnostic_bufnr)
|
||||||
vim.diagnostic.set(diagnostic_ns, diagnostic_bufnr, diagnostics)
|
vim.diagnostic.set(diagnostic_ns, diagnostic_bufnr, diagnostics)
|
||||||
local float_bufnr, winnr = vim.diagnostic.open_float(0, {header = false, scope="buffer"})
|
local float_bufnr, winnr = vim.diagnostic.open_float({header = false, scope="buffer"})
|
||||||
local lines = vim.api.nvim_buf_get_lines(float_bufnr, 0, -1, false)
|
local lines = vim.api.nvim_buf_get_lines(float_bufnr, 0, -1, false)
|
||||||
vim.api.nvim_win_close(winnr, true)
|
vim.api.nvim_win_close(winnr, true)
|
||||||
return lines
|
return lines
|
||||||
@ -1387,7 +1387,7 @@ describe('vim.diagnostic', function()
|
|||||||
vim.api.nvim_win_set_buf(0, diagnostic_bufnr)
|
vim.api.nvim_win_set_buf(0, diagnostic_bufnr)
|
||||||
vim.diagnostic.set(diagnostic_ns, diagnostic_bufnr, diagnostics)
|
vim.diagnostic.set(diagnostic_ns, diagnostic_bufnr, diagnostics)
|
||||||
vim.api.nvim_win_set_cursor(0, {2, 1})
|
vim.api.nvim_win_set_cursor(0, {2, 1})
|
||||||
local float_bufnr, winnr = vim.diagnostic.open_float(0, {header=false})
|
local float_bufnr, winnr = vim.diagnostic.open_float({header=false})
|
||||||
local lines = vim.api.nvim_buf_get_lines(float_bufnr, 0, -1, false)
|
local lines = vim.api.nvim_buf_get_lines(float_bufnr, 0, -1, false)
|
||||||
vim.api.nvim_win_close(winnr, true)
|
vim.api.nvim_win_close(winnr, true)
|
||||||
return lines
|
return lines
|
||||||
@ -1402,7 +1402,7 @@ describe('vim.diagnostic', function()
|
|||||||
vim.api.nvim_win_set_buf(0, diagnostic_bufnr)
|
vim.api.nvim_win_set_buf(0, diagnostic_bufnr)
|
||||||
vim.diagnostic.set(diagnostic_ns, diagnostic_bufnr, diagnostics)
|
vim.diagnostic.set(diagnostic_ns, diagnostic_bufnr, diagnostics)
|
||||||
vim.api.nvim_win_set_cursor(0, {1, 1})
|
vim.api.nvim_win_set_cursor(0, {1, 1})
|
||||||
local float_bufnr, winnr = vim.diagnostic.open_float(0, {header=false, pos=1})
|
local float_bufnr, winnr = vim.diagnostic.open_float({header=false, pos=1})
|
||||||
local lines = vim.api.nvim_buf_get_lines(float_bufnr, 0, -1, false)
|
local lines = vim.api.nvim_buf_get_lines(float_bufnr, 0, -1, false)
|
||||||
vim.api.nvim_win_close(winnr, true)
|
vim.api.nvim_win_close(winnr, true)
|
||||||
return lines
|
return lines
|
||||||
@ -1419,7 +1419,7 @@ describe('vim.diagnostic', function()
|
|||||||
vim.api.nvim_win_set_buf(0, diagnostic_bufnr)
|
vim.api.nvim_win_set_buf(0, diagnostic_bufnr)
|
||||||
vim.diagnostic.set(diagnostic_ns, diagnostic_bufnr, diagnostics)
|
vim.diagnostic.set(diagnostic_ns, diagnostic_bufnr, diagnostics)
|
||||||
vim.api.nvim_win_set_cursor(0, {2, 2})
|
vim.api.nvim_win_set_cursor(0, {2, 2})
|
||||||
local float_bufnr, winnr = vim.diagnostic.open_float(0, {header=false, scope="cursor"})
|
local float_bufnr, winnr = vim.diagnostic.open_float({header=false, scope="cursor"})
|
||||||
local lines = vim.api.nvim_buf_get_lines(float_bufnr, 0, -1, false)
|
local lines = vim.api.nvim_buf_get_lines(float_bufnr, 0, -1, false)
|
||||||
vim.api.nvim_win_close(winnr, true)
|
vim.api.nvim_win_close(winnr, true)
|
||||||
return lines
|
return lines
|
||||||
@ -1434,7 +1434,7 @@ describe('vim.diagnostic', function()
|
|||||||
vim.api.nvim_win_set_buf(0, diagnostic_bufnr)
|
vim.api.nvim_win_set_buf(0, diagnostic_bufnr)
|
||||||
vim.diagnostic.set(diagnostic_ns, diagnostic_bufnr, diagnostics)
|
vim.diagnostic.set(diagnostic_ns, diagnostic_bufnr, diagnostics)
|
||||||
vim.api.nvim_win_set_cursor(0, {1, 1})
|
vim.api.nvim_win_set_cursor(0, {1, 1})
|
||||||
local float_bufnr, winnr = vim.diagnostic.open_float(0, {header=false, scope="cursor", pos={1,3}})
|
local float_bufnr, winnr = vim.diagnostic.open_float({header=false, scope="cursor", pos={1,3}})
|
||||||
local lines = vim.api.nvim_buf_get_lines(float_bufnr, 0, -1, false)
|
local lines = vim.api.nvim_buf_get_lines(float_bufnr, 0, -1, false)
|
||||||
vim.api.nvim_win_close(winnr, true)
|
vim.api.nvim_win_close(winnr, true)
|
||||||
return lines
|
return lines
|
||||||
@ -1449,7 +1449,7 @@ describe('vim.diagnostic', function()
|
|||||||
vim.api.nvim_win_set_buf(0, diagnostic_bufnr)
|
vim.api.nvim_win_set_buf(0, diagnostic_bufnr)
|
||||||
vim.diagnostic.set(diagnostic_ns, diagnostic_bufnr, diagnostics)
|
vim.diagnostic.set(diagnostic_ns, diagnostic_bufnr, diagnostics)
|
||||||
vim.api.nvim_win_set_cursor(0, {1, 1})
|
vim.api.nvim_win_set_cursor(0, {1, 1})
|
||||||
local float_bufnr, winnr = vim.diagnostic.open_float(0, {header=false, scope="cursor", pos={0,first_line_len}})
|
local float_bufnr, winnr = vim.diagnostic.open_float({header=false, scope="cursor", pos={0,first_line_len}})
|
||||||
local lines = vim.api.nvim_buf_get_lines(float_bufnr, 0, -1, false)
|
local lines = vim.api.nvim_buf_get_lines(float_bufnr, 0, -1, false)
|
||||||
vim.api.nvim_win_close(winnr, true)
|
vim.api.nvim_win_close(winnr, true)
|
||||||
return lines
|
return lines
|
||||||
@ -1665,7 +1665,7 @@ describe('vim.diagnostic', function()
|
|||||||
}
|
}
|
||||||
vim.api.nvim_win_set_buf(0, diagnostic_bufnr)
|
vim.api.nvim_win_set_buf(0, diagnostic_bufnr)
|
||||||
vim.diagnostic.set(diagnostic_ns, diagnostic_bufnr, diagnostics)
|
vim.diagnostic.set(diagnostic_ns, diagnostic_bufnr, diagnostics)
|
||||||
local float_bufnr, winnr = vim.diagnostic.open_float(0, {header = false, scope = "buffer"})
|
local float_bufnr, winnr = vim.diagnostic.open_float({header = false, scope = "buffer"})
|
||||||
local lines = vim.api.nvim_buf_get_lines(float_bufnr, 0, -1, false)
|
local lines = vim.api.nvim_buf_get_lines(float_bufnr, 0, -1, false)
|
||||||
vim.api.nvim_win_close(winnr, true)
|
vim.api.nvim_win_close(winnr, true)
|
||||||
return lines
|
return lines
|
||||||
@ -1678,7 +1678,7 @@ describe('vim.diagnostic', function()
|
|||||||
}
|
}
|
||||||
vim.api.nvim_win_set_buf(0, diagnostic_bufnr)
|
vim.api.nvim_win_set_buf(0, diagnostic_bufnr)
|
||||||
vim.diagnostic.set(diagnostic_ns, diagnostic_bufnr, diagnostics)
|
vim.diagnostic.set(diagnostic_ns, diagnostic_bufnr, diagnostics)
|
||||||
local float_bufnr, winnr = vim.diagnostic.open_float(0, {header = false, scope = "buffer", prefix = ""})
|
local float_bufnr, winnr = vim.diagnostic.open_float({header = false, scope = "buffer", prefix = ""})
|
||||||
local lines = vim.api.nvim_buf_get_lines(float_bufnr, 0, -1, false)
|
local lines = vim.api.nvim_buf_get_lines(float_bufnr, 0, -1, false)
|
||||||
vim.api.nvim_win_close(winnr, true)
|
vim.api.nvim_win_close(winnr, true)
|
||||||
return lines
|
return lines
|
||||||
@ -1691,7 +1691,7 @@ describe('vim.diagnostic', function()
|
|||||||
}
|
}
|
||||||
vim.api.nvim_win_set_buf(0, diagnostic_bufnr)
|
vim.api.nvim_win_set_buf(0, diagnostic_bufnr)
|
||||||
vim.diagnostic.set(diagnostic_ns, diagnostic_bufnr, diagnostics)
|
vim.diagnostic.set(diagnostic_ns, diagnostic_bufnr, diagnostics)
|
||||||
local float_bufnr, winnr = vim.diagnostic.open_float(0, {
|
local float_bufnr, winnr = vim.diagnostic.open_float({
|
||||||
header = false,
|
header = false,
|
||||||
prefix = function(_, i, total)
|
prefix = function(_, i, total)
|
||||||
-- Only show a number if there is more than one diagnostic
|
-- Only show a number if there is more than one diagnostic
|
||||||
@ -1712,7 +1712,7 @@ describe('vim.diagnostic', function()
|
|||||||
}
|
}
|
||||||
vim.api.nvim_win_set_buf(0, diagnostic_bufnr)
|
vim.api.nvim_win_set_buf(0, diagnostic_bufnr)
|
||||||
vim.diagnostic.set(diagnostic_ns, diagnostic_bufnr, diagnostics)
|
vim.diagnostic.set(diagnostic_ns, diagnostic_bufnr, diagnostics)
|
||||||
local float_bufnr, winnr = vim.diagnostic.open_float(0, {
|
local float_bufnr, winnr = vim.diagnostic.open_float({
|
||||||
header = false,
|
header = false,
|
||||||
prefix = function(_, i, total)
|
prefix = function(_, i, total)
|
||||||
-- Only show a number if there is more than one diagnostic
|
-- Only show a number if there is more than one diagnostic
|
||||||
@ -1728,7 +1728,21 @@ describe('vim.diagnostic', function()
|
|||||||
]])
|
]])
|
||||||
|
|
||||||
eq("Error executing lua: .../diagnostic.lua:0: prefix: expected 'string' or 'table' or 'function', got 42",
|
eq("Error executing lua: .../diagnostic.lua:0: prefix: expected 'string' or 'table' or 'function', got 42",
|
||||||
pcall_err(exec_lua, [[ vim.diagnostic.open_float(0, { prefix = 42 }) ]]))
|
pcall_err(exec_lua, [[ vim.diagnostic.open_float({ prefix = 42 }) ]]))
|
||||||
|
end)
|
||||||
|
|
||||||
|
it('works with the old signature', function()
|
||||||
|
eq({'1. Syntax error'}, exec_lua [[
|
||||||
|
local diagnostics = {
|
||||||
|
make_error("Syntax error", 0, 1, 0, 3),
|
||||||
|
}
|
||||||
|
vim.api.nvim_win_set_buf(0, diagnostic_bufnr)
|
||||||
|
vim.diagnostic.set(diagnostic_ns, diagnostic_bufnr, diagnostics)
|
||||||
|
local float_bufnr, winnr = vim.diagnostic.open_float(0, { header = false })
|
||||||
|
local lines = vim.api.nvim_buf_get_lines(float_bufnr, 0, -1, false)
|
||||||
|
vim.api.nvim_win_close(winnr, true)
|
||||||
|
return lines
|
||||||
|
]])
|
||||||
end)
|
end)
|
||||||
end)
|
end)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user