Fix error with GoGenConstructor command definition

This commit is contained in:
Henry 2024-03-29 10:25:41 -04:00
parent ee8a9a70d3
commit e8553d6775

View file

@ -11,7 +11,7 @@ command! -nargs=* GoGenerate :lua require"gopher.api".generate(<f-args>)
command! GoCmt :lua require"gopher.api".comment() command! GoCmt :lua require"gopher.api".comment()
command! GoIfErr :lua require"gopher.api".iferr() command! GoIfErr :lua require"gopher.api".iferr()
command! GoInstallDeps :lua require"gopher.api".install_deps() command! GoInstallDeps :lua require"gopher.api".install_deps()
command! GoGenConstructor :lua require"gopher.api".gen_constructor(f-args) command! GoGenConstructor :lua require"gopher.api".gen_constructor(<f-args>)
" TODO: Use this format to remove vimscript in the future" " TODO: Use this format to remove vimscript in the future"