[mirror] Make your go dev experience better
github.com/olexsmir/gopher.nvim
neovim
golang
1command! -nargs=* GoTagAdd :lua require"gopher".tags.add(<f-args>)
2command! -nargs=* GoTagRm :lua require"gopher".tags.rm(<f-args>)
3command! GoTestAdd :lua require"gopher".test.add()
4command! GoTestsAll :lua require"gopher".test.all()
5command! GoTestsExp :lua require"gopher".test.exported()
6command! -nargs=* GoMod :lua require"gopher".mod(<f-args>)
7command! -nargs=* GoGet :lua require"gopher".get(<f-args>)
8command! -nargs=* GoWork :lua require"gopher".work(<f-args>)
9command! -nargs=* GoImpl :lua require"gopher".impl(<f-args>)
10command! -nargs=* GoGenerate :lua require"gopher".generate(<f-args>)
11command! GoCmt :lua require"gopher".comment()
12command! GoIfErr :lua require"gopher".iferr()
13command! GoInstallDeps :lua require"gopher".install_deps()
14command! GopherLog :lua vim.cmd("tabnew " .. require("gopher._utils.log").get_outfile())