将 :make 命令替换为 vim 中的自定义脚本
我在 Xcode 中使用 MacVim 作为编辑器。 默认情况下,Command-B 和 :make 一定会从命令行调用“make”。 由于我们使用 Xcode 进行构建和项目配置,我想用 applescript 命令替换 :make/Command-B 调用 make 。 这可能吗?我该怎么做?
I use MacVim as my editor within Xcode. By default Command-B and :make are bound to call 'make' from the command line. As we're using Xcode for building and project configuration, I'd like to replace the :make/Command-B calls to make with an applescript command. Is this possible, and how would I go about doing it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试 :help makeprg
您使用 :set makeprg=xxx 来更改执行的命令。
Try :help makeprg
You use :set makeprg=xxx to change the command that is executed.
为了从 CLI 运行 XCode 构建,命令是 xcodebuild。
不过我从来没有在 vim 中尝试过。
In order to run an XCode build from CLI, the command is xcodebuild.
I have never tried it inside vim, though.