[mirror] Make your go dev experience better github.com/olexsmir/gopher.nvim
neovim golang
5
fork

Configure Feed

Select the types of activity you want to include in your feed.

at c5cc5080fa75e1876fcb4b34c4b00810a53b0d50 16 lines 973 B view raw
1command! -nargs=* GoTagAdd :lua require"gopher".tags.add(<f-args>) 2command! -nargs=* GoTagRm :lua require"gopher".tags.rm(<f-args>) 3command! GoTagClear :lua require"gopher".tags.clear() 4command! GoTestAdd :lua require"gopher".test.add() 5command! GoTestsAll :lua require"gopher".test.all() 6command! GoTestsExp :lua require"gopher".test.exported() 7command! -nargs=* GoMod :lua require"gopher".mod(<f-args>) 8command! -nargs=* GoGet :lua require"gopher".get(<f-args>) 9command! -nargs=* GoWork :lua require"gopher".work(<f-args>) 10command! -nargs=* GoImpl :lua require"gopher".impl(<f-args>) 11command! -nargs=* GoGenerate :lua require"gopher".generate(<f-args>) 12command! GoCmt :lua require"gopher".comment() 13command! GoIfErr :lua require"gopher".iferr() 14command! GoInstallDeps :lua require"gopher".install_deps() 15command! GoInstallDepsSync :lua require"gopher".install_deps({ sync = true }) 16command! GopherLog :lua vim.cmd("tabnew " .. require("gopher._utils.log").get_outfile())