From b4c7f8712c5d2d41348b7983ca86c4ae5352dc3c Mon Sep 17 00:00:00 2001 From: Smirnov Olexander Date: Fri, 3 Jun 2022 13:30:40 +0300 Subject: [PATCH] feat: add vim commands for lua api --- plugin/gopher.vim | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 plugin/gopher.vim diff --git a/plugin/gopher.vim b/plugin/gopher.vim new file mode 100644 index 0000000..29f9a60 --- /dev/null +++ b/plugin/gopher.vim @@ -0,0 +1,4 @@ +command! -nargs=* GoTagAdd :lua require"gopher".tags_add() +command! -nargs=* GoTagRm :lua require"gopher".tags_rm() +command! -nargs=* GoMod :lua require"gopher".mod() +command! GoInstallDeps :lua require"gopher".install_deps()