go.nvim/lua/go.lua

253 lines
11 KiB
Lua
Raw Normal View History

2021-03-10 12:15:06 +00:00
-- some of commands extracted from gopher.vim
local go = {}
-- Keep this in sync with README.md
-- Keep this in sync with doc/go.txt
2021-07-10 11:04:24 +00:00
_GO_NVIM_CFG = {
2022-01-10 10:26:41 +00:00
go = "go", -- set to go1.18beta1 if necessary
2021-12-06 10:32:23 +00:00
goimport = "gopls", -- if set to 'gopls' will use gopls format, also goimport
fillstruct = "gopls",
gofmt = "gofumpt", -- if set to gopls will use gopls format
2021-08-14 00:27:55 +00:00
max_line_len = 120,
2021-07-10 11:04:24 +00:00
tag_transform = false,
2021-12-06 10:32:23 +00:00
test_dir = "",
comment_placeholder = "",
icons = { breakpoint = "🧘", currentpos = "🏃" }, -- set to false to disable icons setup
2021-07-10 11:04:24 +00:00
verbose = false,
log_path = vim.fn.expand("$HOME") .. "/tmp/gonvim.log",
lsp_cfg = false, -- false: do nothing
-- true: apply non-default gopls setup defined in go/lsp.lua
-- if lsp_cfg is a table, merge table with with non-default gopls setup in go/lsp.lua, e.g.
lsp_gofumpt = false, -- true: set default gofmt in gopls format to gofumpt
lsp_on_attach = nil, -- nil: use on_attach function defined in go/lsp.lua for gopls,
-- when lsp_cfg is true
-- if lsp_on_attach is a function: use this function as on_attach function for gopls,
-- when lsp_cfg is true
lsp_format_on_save = 1,
lsp_document_formatting = true,
-- set to true: use gopls to format
-- false if you want to use other formatter tool(e.g. efm, nulls)
2022-04-20 11:24:07 +00:00
lsp_keymaps = true, -- true: use default keymaps defined in go/lsp.lua
lsp_codelens = true,
lsp_diag_hdlr = true, -- hook lsp diag handler
-- virtual text setup
lsp_diag_virtual_text = { space = 0, prefix = "" },
lsp_diag_signs = true,
lsp_diag_update_in_insert = false,
gopls_cmd = nil, --- you can provide gopls path and cmd if it not in PATH, e.g. cmd = { "/home/ray/.local/nvim/data/lspinstall/go/gopls" }
gopls_remote_auto = true,
2021-12-06 10:32:23 +00:00
gocoverage_sign = "",
2021-08-25 15:42:17 +00:00
gocoverage_sign_priority = 5,
launch_json = nil, -- the launch.json file path, default to .vscode/launch.json
2022-02-21 22:46:59 +00:00
-- launch_json = vim.fn.getcwd() .. "/.vscode/launch.json",
dap_debug = true,
dap_debug_gui = true,
dap_debug_keymap = true, -- true: use keymap for debugger defined in go/dap.lua
-- false: do not use keymap in go/dap.lua. you must define your own.
2021-07-26 00:35:58 +00:00
dap_vt = true, -- false, true and 'all frames'
2022-01-30 04:57:56 +00:00
dap_port = 38697, -- can be set to a number or `-1` so go.nvim will pickup a random port
build_tags = "", --- you can provide extra build tags for tests or debugger
2022-02-16 10:25:21 +00:00
textobjects = true, -- treesitter binding for text objects
2021-12-06 10:32:23 +00:00
test_runner = "go", -- richgo, go test, richgo, dlv, ginkgo
run_in_floaterm = false, -- set to true to run in float window.
2021-07-10 11:04:24 +00:00
}
local dap_config = function()
2021-10-23 09:26:11 +00:00
vim.cmd([[command! BreakCondition lua require"dap".set_breakpoint(vim.fn.input("Breakpoint condition: "))]])
2021-07-10 11:04:24 +00:00
vim.cmd([[command! ReplRun lua require"dap".repl.run_last()]])
vim.cmd([[command! ReplToggle lua require"dap".repl.toggle()]])
vim.cmd([[command! ReplOpen lua require"dap".repl.open(), 'split']])
2021-10-23 09:26:11 +00:00
vim.cmd([[command! DapRerun lua require'dap'.disconnect();require'dap'.close();require'dap'.run_last()]])
2021-07-10 11:04:24 +00:00
2021-08-14 09:18:08 +00:00
vim.cmd([[command! DapStop lua require'go.dap'.stop()]])
2021-07-10 11:04:24 +00:00
end
2021-03-10 12:15:06 +00:00
2022-01-11 02:50:43 +00:00
-- TODO: nvim_{add,del}_user_command https://github.com/neovim/neovim/pull/16752
2021-03-10 12:15:06 +00:00
function go.setup(cfg)
cfg = cfg or {}
2021-07-10 11:04:24 +00:00
if cfg.max_len then
vim.notify("go.nvim max_len renamed to max_line_len", vim.lsp.log_levels.WARN)
2021-07-08 16:16:22 +00:00
end
2021-07-10 11:04:24 +00:00
_GO_NVIM_CFG = vim.tbl_extend("force", _GO_NVIM_CFG, cfg)
2021-12-06 10:32:23 +00:00
vim.cmd([[autocmd FileType go setlocal omnifunc=v:lua.vim.lsp.omnifunc]])
vim.cmd([[command! GoMake silent lua require'go.asyncmake'.make()]])
2021-07-10 11:04:24 +00:00
vim.cmd([[command! GoFmt lua require("go.format").gofmt()]])
vim.cmd(
[[command! -nargs=* -complete=custom,v:lua.package.loaded.go.doc_complete GoImport lua require("go.format").goimport(<f-args>)]]
)
2022-02-02 04:49:54 +00:00
vim.cmd([[command! -nargs=* GoGet lua require'go.goget'.run({<f-args>})]])
2022-01-10 10:26:41 +00:00
local gobin = _GO_NVIM_CFG.go
local cmd = string.format([[command! GoGenerate :setl makeprg=%s\ generate | :GoMake]], gobin)
vim.cmd(cmd)
cmd = string.format(
[[command! -nargs=* -complete=custom,v:lua.package.loaded.go.package_complete GoBuild :setl makeprg=%s\ build | lua require'go.asyncmake'.make(<f-args>)]],
gobin
2021-12-06 10:32:23 +00:00
)
2022-01-10 10:26:41 +00:00
vim.cmd(cmd)
cmd = string.format(
[[command! -nargs=* -complete=custom,v:lua.package.loaded.go.package_complete GoVet :setl makeprg=%s\ vet | lua require'go.asyncmake'.make(<f-args>)]],
gobin
2021-12-15 09:22:32 +00:00
)
2022-01-10 10:26:41 +00:00
vim.cmd(cmd)
cmd = string.format(
[[command! -nargs=* -complete=custom,v:lua.package.loaded.go.package_complete GoRun :setl makeprg=%s\ run | lua require'go.asyncmake'.make(<f-args>)]],
gobin
2021-12-06 10:32:23 +00:00
)
2022-01-10 10:26:41 +00:00
vim.cmd(cmd)
vim.cmd([[command! -nargs=* GoStop lua require("go.asyncmake").stopjob(<f-args>)]])
2021-09-03 02:13:15 +00:00
-- if you want to output to quickfix
-- vim.cmd(
-- [[command! -nargs=* GoTest :setl makeprg=go\ test\ -v\ ./...| lua require'go.asyncmake'.make(<f-args>)]])
2021-12-06 10:32:23 +00:00
local sep = require("go.utils").sep()
2021-09-03 02:13:15 +00:00
-- example to running test in split buffer
2021-11-23 23:13:40 +00:00
-- vim.cmd(
-- [[command! -nargs=* -complete=custom,v:lua.package.loaded.go.package_complete GoTest :setl makeprg=go\ test\ -v\ | lua require'go.runner'.make(<f-args>)]])
2021-11-13 03:29:42 +00:00
vim.cmd(
2021-12-06 10:32:23 +00:00
[[command! -nargs=* -complete=custom,v:lua.package.loaded.go.package_complete GoTest lua require('go.gotest').test(<f-args>)]]
)
2021-08-25 15:42:17 +00:00
2021-11-13 03:29:42 +00:00
vim.cmd(
2021-12-06 10:32:23 +00:00
[[command! -nargs=* -complete=custom,v:lua.package.loaded.go.package_complete GoCoverage lua require'go.coverage'.run(<f-args>)]]
)
-- vim.cmd([[command! GoTestCompile :setl makeprg=go\ build | :GoMake]])
2021-12-10 00:43:59 +00:00
--print-issued-lines=false
vim.cmd(
[[command! GoLint :setl makeprg=golangci-lint\ run\ --print-issued-lines=false\ --exclude-use-default=false | :GoMake]]
)
2021-07-10 11:04:24 +00:00
2021-08-31 11:19:14 +00:00
-- e.g. GoTestFunc unit
vim.cmd([[command! -nargs=* GoTestFunc lua require('go.gotest').test_fun(<f-args>)]])
-- e.g. GoTestFile unit
vim.cmd([[command! -nargs=* GoTestFile lua require('go.gotest').test_file(<f-args>)]])
2021-11-23 23:13:40 +00:00
vim.cmd([[command! -nargs=* GoTestPkg lua require('go.gotest').test_package(<f-args>)]])
vim.cmd([[command! -nargs=* GoAddTest lua require("go.gotests").fun_test(<f-args>)]])
vim.cmd([[command! -nargs=* GoAddExpTest lua require("go.gotests").exported_test(<f-args>)]])
vim.cmd([[command! -nargs=* GoAddAllTest lua require("go.gotests").all_test(<f-args>)]])
2022-02-21 22:46:59 +00:00
vim.cmd([[command! -nargs=* GoModVendor lua require("go.mod").run('vendor')]])
2021-03-10 12:15:06 +00:00
vim.cmd([[command! GoCodeLenAct lua require("go.codelens").run_action()]])
vim.cmd([[command! GoCodeAction lua require("go.codeaction").run_action()]])
2021-03-10 12:15:06 +00:00
vim.cmd([[command! -nargs=* GoAddTag lua require("go.tags").add(<f-args>)]])
vim.cmd([[command! -nargs=* GoRmTag lua require("go.tags").rm(<f-args>)]])
2021-12-22 04:01:15 +00:00
vim.cmd(
[[command! -nargs=+ -complete=custom,v:lua.package.loaded.go.impl_complete GoImpl lua require("go.impl").run(<f-args>)]]
)
2021-11-13 03:29:42 +00:00
vim.cmd(
[[command! -nargs=* -complete=custom,v:lua.package.loaded.go.doc_complete GoDoc lua require'go.godoc'.run('doc', {<f-args>})]]
2021-12-06 10:32:23 +00:00
)
vim.cmd(
[[command! -nargs=+ -complete=custom,v:lua.package.loaded.go.tools_complete GoInstallBinary lua require'go.install'.install(<f-args>)]]
)
vim.cmd(
[[command! -nargs=+ -complete=custom,v:lua.package.loaded.go.tools_complete GoUpdateBinary lua require'go.install'.update(<f-args>)]]
)
vim.cmd([[command! GoInstallBinaries lua require'go.install'.install_all()]])
vim.cmd([[command! GoUpdateBinaries lua require'go.install'.update_all()]])
2021-06-22 00:11:26 +00:00
vim.cmd([[command! GoClearTag lua require("go.tags").clear()]])
vim.cmd([[command! GoCmt lua require("go.comment").gen()]])
vim.cmd([[command! GoRename lua require("go.rename").run()]])
2021-07-15 09:18:04 +00:00
vim.cmd([[command! GoIfErr lua require("go.iferr").run()]])
vim.cmd([[command! GoFillStruct lua require("go.reftool").fillstruct()]])
vim.cmd([[command! GoFillSwitch lua require("go.reftool").fillswitch()]])
vim.cmd([[command! GoFixPlurals lua require("go.reftool").fixplurals()]])
vim.cmd([[command! -bang GoAlt lua require"go.alternate".switch("<bang>"=="!", '')]])
vim.cmd([[command! -bang GoAltV lua require"go.alternate".switch("<bang>"=="!", 'vsplit')]])
vim.cmd([[command! -bang GoAltS lua require"go.alternate".switch("<bang>"=="!", 'split')]])
2021-03-10 21:35:30 +00:00
vim.cmd("au FileType go au QuickFixCmdPost [^l]* nested cwindow")
vim.cmd("au FileType go au QuickFixCmdPost l* nested lwindow")
2021-03-10 12:15:06 +00:00
2021-11-13 03:29:42 +00:00
vim.cmd([[command! -bang GoModTidy lua require"go.gopls".tidy()]])
2021-07-10 11:04:24 +00:00
if _GO_NVIM_CFG.dap_debug then
dap_config()
2021-11-24 09:05:02 +00:00
vim.cmd(
2021-12-06 10:32:23 +00:00
[[command! -nargs=* -complete=custom,v:lua.package.loaded.go.dbg_complete GoDebug lua require"go.dap".run(<f-args>)]]
)
vim.cmd([[command! GoDebugConfig lua require"go.launch".config()]])
vim.cmd([[command! GoBreakToggle lua require"go.dap".breakpt()]])
2021-10-23 09:26:11 +00:00
vim.cmd([[command! BreakCondition lua require"dap".set_breakpoint(vim.fn.input("Breakpoint condition: "))]])
2021-07-10 11:04:24 +00:00
vim.cmd([[command! ReplRun lua require"dap".repl.run_last()]])
vim.cmd([[command! ReplToggle lua require"dap".repl.toggle()]])
vim.cmd([[command! ReplOpen lua require"dap".repl.open(), 'split']])
2021-10-23 09:26:11 +00:00
vim.cmd([[command! DapRerun lua require'dap'.disconnect();require'dap'.close();require'dap'.run_last()]])
2021-11-24 09:05:02 +00:00
vim.cmd([[command! DapUiFloat lua require("dapui").float_element()]])
vim.cmd([[command! DapUiToggle lua require("dapui").toggle()]])
2021-07-14 14:15:15 +00:00
vim.cmd([[command! GoDbgStop lua require'go.dap'.stop()]])
2021-07-10 11:04:24 +00:00
end
2021-07-11 11:50:09 +00:00
if _GO_NVIM_CFG.lsp_cfg then
2021-12-06 10:32:23 +00:00
require("go.lsp").setup()
2021-07-12 04:25:07 +00:00
if _GO_NVIM_CFG.lsp_diag_hdlr then
2021-12-06 10:32:23 +00:00
require("go.lsp_diag")
2021-07-12 04:25:07 +00:00
end
elseif not _GO_NVIM_CFG.lsp_cfg and _GO_NVIM_CFG.lsp_on_attach then
2022-01-11 11:33:23 +00:00
vim.notify("lsp_on_attach ignored, because lsp_cfg is false", vim.lsp.log_levels.WARN)
end
2021-12-06 10:32:23 +00:00
require("go.coverage").highlight()
if _GO_NVIM_CFG.lsp_codelens then
2021-12-06 10:32:23 +00:00
require("go.codelens").setup()
end
if _GO_NVIM_CFG.textobjects then
2021-12-22 04:01:15 +00:00
require("go.ts.textobjects").setup()
end
-- TODO remove in future
2021-03-10 12:15:06 +00:00
end
2021-11-13 03:29:42 +00:00
2021-12-06 10:32:23 +00:00
go.doc_complete = require("go.godoc").doc_complete
go.package_complete = require("go.package").complete
2021-11-23 23:13:40 +00:00
go.set_test_runner = function(runner)
-- richgo, go test, richgo, dlv, ginkgo
2021-12-06 10:32:23 +00:00
local runners = { "richgo", "go", "richgo", "ginkgo" } -- dlv
2021-11-23 23:13:40 +00:00
for _, v in pairs(runners) do
if v == runner then
_GO_NVIM_CFG.test_runner = runner
return
end
end
vim.notify("runner not supported " .. runner, vim.lsp.log_levels.ERROR)
2021-11-23 23:13:40 +00:00
end
2021-11-24 09:05:02 +00:00
go.dbg_complete = function(arglead, cmdline, cursorpos)
-- richgo, go test, richgo, dlv, ginkgo
local testopts = { "--test", "--nearest", "--file", "--package", "--attach", "--stop", "--restart" }
2021-12-06 10:32:23 +00:00
return table.concat(testopts, "\n")
2021-11-24 09:05:02 +00:00
end
2021-12-06 10:32:23 +00:00
go.tools_complete = function(arglead, cmdline, cursorpos)
local gotools = require("go.install").gotools
table.sort(gotools)
return table.concat(gotools, "\n")
end
2021-12-22 04:01:15 +00:00
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
2021-03-10 12:15:06 +00:00
return go