refactor(gotests): use new runner, clean code

This commit is contained in:
Smirnov Oleksandr 2023-08-09 12:03:45 +03:00
parent 6c2f2749ca
commit 16b9a5c8f4
2 changed files with 14 additions and 35 deletions

View file

@ -1,8 +1,8 @@
command! -nargs=* GoTagAdd :lua require"gopher".tags_add(<f-args>)
command! -nargs=* GoTagRm :lua require"gopher".tags_rm(<f-args>)
command! -nargs=* GoTestAdd :lua require"gopher".test_add(<f-args>)
command! -nargs=* GoTestsAll :lua require"gopher".tests_all(<f-args>)
command! -nargs=* GoTestsExp :lua require"gopher".test_exported(<f-args>)
command! GoTestAdd :lua require"gopher".test_add()
command! GoTestsAll :lua require"gopher".tests_all()
command! GoTestsExp :lua require"gopher".test_exported()
command! -nargs=* GoMod :lua require"gopher".mod(<f-args>)
command! -nargs=* GoGet :lua require"gopher".get(<f-args>)
command! -nargs=* GoWork :lua require"gopher".work(<f-args>)