我可以运行 Eclipse c++来自命令行的格式化程序
我找到了此页面 显示了如何运行 Java 格式化程序,但我找不到类似的资源来运行内置 C/C++ 格式化程序。
有可能做到这一点吗?
I found this page which shows how to run the Java formatter but I cannot find similar resources to run the built-in C/C++ formatters.
It is possible To do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是可能的。您可以使用参数调用 Eclipse:
eclipse.exe -application org.eclipse.jdt.core.JavaCodeFormatter -config "./org.eclipse.jdt.core.prefs" "../lala/tmp" ...
Its possible. You can call Eclipse with he parameter:
eclipse.exe -application org.eclipse.jdt.core.JavaCodeFormatter -config "./org.eclipse.jdt.core.prefs" "../lala/tmp" ...
来自 eclipse doc
C/C++开发用户指南>任务>使用格式化程序应用程序:
From the eclipse doc
C/C++ Development User Guide > Tasks > Using the Formatter Application: