[mirror] Make your go dev experience better github.com/olexsmir/gopher.nvim
neovim golang
at v0.1.2 697 B view raw
1command! -nargs=* GoTagAdd :lua require"gopher".tags_add(<f-args>) 2command! -nargs=* GoTagRm :lua require"gopher".tags_rm(<f-args>) 3command! -nargs=* GoTestAdd :lua require"gopher".test_add(<f-args>) 4command! -nargs=* GoTestsAll :lua require"gopher".tests_all(<f-args>) 5command! -nargs=* GoTestsExp :lua require"gopher".test_exported(<f-args>) 6command! -nargs=* GoMod :lua require"gopher".mod(<f-args>) 7command! -nargs=* GoGet :lua require"gopher".get(<f-args>) 8command! -nargs=* GoImpl :lua require"gopher".impl(<f-args>) 9command! -nargs=* GoGenerate :lua require"gopher".generate(<f-args>) 10command! GoCmt :lua require"gopher".comment() 11command! GoInstallDeps :lua require"gopher".install_deps()