You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
go.nvim/lua/go/tags.lua

107 lines
3.0 KiB
Lua

local utils = require("go.utils")
4 years ago
local tags = {}
-- support -add-tags, --add-options, -remove-tags, -remove-options, clear-tags, clear-options
-- for struct and line range
-- gomodifytags -file demo.go -struct Server -add-tags json
-- gomodifytags -file demo.go -struct Server -add-tags json -w
-- gomodifytags -file demo.go -struct Server -add-tags json,xml
-- gomodifytags -file demo.go -struct Server -add-tags json,xml -transform camelcase
-- gomodifytags -file demo.go -line 8,11 -clear-tags xml
3 years ago
local opts = {
"-add-tags", "-add-options", "-remove-tags", "-remove-options", "-clear-tags", "-clear-options"
}
4 years ago
local gomodify = "gomodifytags"
3 years ago
local transform = _GO_NVIM_CFG.tag_transfer
4 years ago
tags.modify = function(...)
require("go.install").install(gomodify)
local fname = vim.fn.expand("%") -- %:p:h ? %:p
local row, col = unpack(vim.api.nvim_win_get_cursor(0))
local ns = require("go.ts.go").get_struct_node_at_pos(row, col)
if ns == nil or ns == {} then
return
end
-- print("parnode" .. vim.inspect(ns))
local struct_name = ns.name
local rs, re = ns.dim.s.r, ns.dim.e.r
local setup = {gomodify, "-format", "json", "-file", fname, '-w'}
if struct_name == nil then
local _, csrow, _, _ = unpack(vim.fn.getpos('.'))
table.insert(setup, '-line')
table.insert(setup, csrow)
else
table.insert(setup, '-struct')
table.insert(setup, struct_name)
end
3 years ago
if transform then
4 years ago
table.insert(setup.args, "-transform")
table.insert(setup.args, transform)
end
local arg = {...}
for i, v in ipairs(arg) do
table.insert(setup, v)
end
if #arg == 1 and arg[1] ~= "-clear-tags" then
4 years ago
table.insert(setup, "json")
end
-- print(vim.inspect(setup))
3 years ago
local j = vim.fn.jobstart(setup, {
on_stdout = function(jobid, data, event)
data = utils.handle_job_data(data)
if not data then
return
4 years ago
end
3 years ago
local tagged = vim.fn.json_decode(data)
-- print(vim.inspect(tagged))
-- print(tagged["start"], tagged["end"], tagged.lines)
if tagged.errors ~= nil or tagged.lines == nil or tagged["start"] == nil or tagged["start"] == 0 then
3 years ago
print("failed to set tags" .. vim.inspect(tagged))
end
for index, value in ipairs(tagged.lines) do
tagged.lines[index] = utils.rtrim(value)
end
-- trim tail spaces?
vim.api.nvim_buf_set_lines(0, tagged["start"] - 1, tagged["start"] - 1 + #tagged.lines, false, tagged.lines)
3 years ago
vim.cmd("write")
print("struct updated ")
end
})
4 years ago
end
tags.add = function(...)
local cmd = {"-add-tags"}
local arg = {...}
if #arg == 0 then
arg = {'json'}
end
4 years ago
for _, v in ipairs(arg) do
table.insert(cmd, v)
end
4 years ago
tags.modify(unpack(cmd))
end
tags.rm = function(...)
local cmd = {"-remove-tags"}
local arg = {...}
if #arg == 0 then
arg = {'json'}
end
4 years ago
for _, v in ipairs(arg) do
table.insert(cmd, v)
end
tags.modify(unpack(cmd))
end
tags.clear = function()
local cmd = {"-clear-tags"}
tags.modify(unpack(cmd))
end
return tags