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/complete.lua

79 lines
2.0 KiB
Lua

local go = {}
-- go.dbg_complete = function(arglead, cmdline, cursorpos)
go.dbg_complete = function(_, _, _)
-- richgo, go test, richgo, dlv, ginkgo
local testopts = {
"--help",
"--test",
"--nearest",
"--file",
"--package",
"--attach",
"--stop",
"--restart",
"--breakpoint",
"--tag",
}
return table.concat(testopts, "\n")
end
go.tools_complete = function(_, _, _)
local gotools = require("go.install").gotools
table.sort(gotools)
return table.concat(gotools, "\n")
end
go.impl_complete = function(arglead, cmdline, cursorpos)
-- print(table.concat(require("go.impl").complete(arglead, cmdline, cursorpos), "\n"))
return table.concat(require("go.impl").complete(arglead, cmdline, cursorpos), "\n")
-- local testopts = { "test", "nearest", "file", "stop", "restart" }
-- return table.concat(testopts, "\n")
end
go.modify_tags_complete = function(_, _, _)
local opts = {
"-add-tags",
"-add-options",
"-remove-tags",
"-remove-options",
"-clear-tags",
"-clear-options",
}
return table.concat(opts, "\n")
end
-- how to deal complete https://github.com/vim-scripts/marvim/blob/c159856871aa18fa4f3249c6aa312c52f586d1ef/plugin/marvim.vim#L259
-- go.add_tags_complete = function(arglead, line, pos)
go.add_tags_complete = function(arglead, line, _)
-- print("lead: ",arglead, "L", line, "p" )
local transf = { "camelcase", "snakecase", "lispcase", "pascalcase", "titlecase", "keep" }
local options = {"-transform", "-add-options"}
local ret = {}
if #vim.split(line, "%s+") >= 2 then
if vim.startswith("-transform", arglead) then
return "-transform"
end
table.foreach(transf, function(_, tag)
if vim.startswith(tag, arglead) then
ret[#ret + 1] = tag
end
end)
if #ret > 0 then
return table.concat(ret, "\n")
end
return table.concat(transf, "\n")
end
local opts = {
"json",
"json.yml",
"-transform",
}
return table.concat(opts, "\n")
end
return go