如何设置“:make”使用scons?

发布于 2024-08-12 02:11:45 字数 160 浏览 8 评论 0原文

我知道有一种方法可以让 vim 在按下 :make 时运行 scons 而不是 make

我有一个选项可以在我的 ~/.vimrc 中执行此操作,但我不久前将其删除并忘记了它是什么。

I know there is a way to make vim run scons instead of make when I press :make.

I had an option that did this in my ~/.vimrc but I removed it a while ago and forgot what it was.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

难得心□动 2024-08-19 02:11:45

这个周末我也遇到了同样的问题。我不想每次启动 Vim 时都输入 :set makeprg=scons 或在 .vimrc 中硬编码 'makeprg',因为我对某些项目使用 make,对其他项目使用 mavenrake...,等等 ...

所以今天我写了一个名为 Makeshift 的 Vim 插件来确定要做什么通过查找已知文件(MakefileSConstructpom.xml、...)来调用 :make并相应地设置'makeprg'

详细信息请参见 vim.orgDoR 以及此问题的未来访问者。

I had the same problem this weekend. I didn't want to type :set makeprg=scons every time I started Vim or hard-code 'makeprg' in my .vimrc, because I use make for some projects, maven for others, rake..., et cetera ...

So today I wrote a Vim plugin called Makeshift to determine what to call for :make by looking for known files (Makefile, SConstruct, pom.xml, ...) and setting 'makeprg' accordingly.

Details are on vim.org for DoR and future visitors to this question.

寄与心 2024-08-19 02:11:45

设置 makeprg。我不确定 scons 是否需要任何选项,但它可能看起来像:

set makeprg=scons

Set makeprg. I'm not sure if any options are required for scons, but it might look like:

set makeprg=scons
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文