英文:
How can I setup go-gb to build inside of vim
问题
有人在vim中将go-gb设置为您的makeprg吗?有各种关于配置makeprg编译c代码的文档,但是我找不到关于配置新命令的文档。
理想情况下,我希望能够在vim中运行:make命令并利用errorformat来构建。
set errorformat=%D(in\ %.%#)\ building\ pkg\ "%f",%f:%l:\ %m%.%#,%-G%.%#
英文:
Has anyone setup go-gb as your makeprg in vim? There is all sorts of documentation on configuration makeprg for compiling c code, but now much that I can find on configuring new commands.
Ideally i'd be able to run the :make command from vim and utilize errorformat on my builds.
set errorformat=%D(in\ %.%#)\ building\ pkg\ \"%f\",%f:%l:\ %m%.%#,%-G%.%#
答案1
得分: 1
为了在vim
中将gb
作为你的makeprg
使用:
$ cd mygodir
$ vi main.go
#在vi中
# :set errorformat=%D(in\ %.%#)\ building\ pkg\ \"%f\",%f:%l:\ %m%.%#,%-G%.%#
#然后
# :set makeprg=gb
#现在
#:mak
#将像往常一样工作。
英文:
In order to use gb
as your makeprg
in vim
:
$ cd mygodir
$ vi main.go
#inside vi
# :set errorformat=%D(in\ %.%#)\ building\ pkg\ \"%f\",%f:%l:\ %m%.%#,%-G%.%#
#and then
# :set makeprg=gb
#now
#:mak
#will work as usual.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论