fix selene
This commit is contained in:
parent
80d0659425
commit
52a0d041de
2 changed files with 5 additions and 5 deletions
|
|
@ -4,25 +4,25 @@ local function generate(row, col)
|
||||||
local comment, ns = nil, nil
|
local comment, ns = nil, nil
|
||||||
|
|
||||||
ns = ts_utils.get_package_node_at_pos(row, col)
|
ns = ts_utils.get_package_node_at_pos(row, col)
|
||||||
if ns ~= nil and ns ~= {} then
|
if ns ~= nil then
|
||||||
comment = "// Package " .. ns.name .. " provides " .. ns.name
|
comment = "// Package " .. ns.name .. " provides " .. ns.name
|
||||||
return comment, ns
|
return comment, ns
|
||||||
end
|
end
|
||||||
|
|
||||||
ns = ts_utils.get_struct_node_at_pos(row, col)
|
ns = ts_utils.get_struct_node_at_pos(row, col)
|
||||||
if ns ~= nil and ns ~= {} then
|
if ns ~= nil then
|
||||||
comment = "// " .. ns.name .. " " .. ns.type .. " "
|
comment = "// " .. ns.name .. " " .. ns.type .. " "
|
||||||
return comment, ns
|
return comment, ns
|
||||||
end
|
end
|
||||||
|
|
||||||
ns = ts_utils.get_func_method_node_at_pos(row, col)
|
ns = ts_utils.get_func_method_node_at_pos(row, col)
|
||||||
if ns ~= nil and ns ~= {} then
|
if ns ~= nil then
|
||||||
comment = "// " .. ns.name .. " " .. ns.type .. " "
|
comment = "// " .. ns.name .. " " .. ns.type .. " "
|
||||||
return comment, ns
|
return comment, ns
|
||||||
end
|
end
|
||||||
|
|
||||||
ns = ts_utils.get_interface_node_at_pos(row, col)
|
ns = ts_utils.get_interface_node_at_pos(row, col)
|
||||||
if ns ~= nil and ns ~= {} then
|
if ns ~= nil then
|
||||||
comment = "// " .. ns.name .. " " .. ns.type .. " "
|
comment = "// " .. ns.name .. " " .. ns.type .. " "
|
||||||
return comment, ns
|
return comment, ns
|
||||||
end
|
end
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,7 @@ local M = {}
|
||||||
local function modify(...)
|
local function modify(...)
|
||||||
local fpath = vim.fn.expand "%" ---@diagnostic disable-line: missing-parameter
|
local fpath = vim.fn.expand "%" ---@diagnostic disable-line: missing-parameter
|
||||||
local ns = ts_utils.get_struct_node_at_pos(unpack(vim.api.nvim_win_get_cursor(0)))
|
local ns = ts_utils.get_struct_node_at_pos(unpack(vim.api.nvim_win_get_cursor(0)))
|
||||||
if ns == nil or ns == {} then
|
if ns == nil then
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue