Gnu 在单独的行上缩进函数调用参数
我在 gnu indent 中找不到任何选项:
result = some_function(prm1,
prm2,
prm3);
或类似的内容:
result = some_function(
prm1,
prm2,
prm3);
Is it possible with gnu indent?谢谢。
I could not find any option in gnu indent to have:
result = some_function(prm1,
prm2,
prm3);
Or something like this:
result = some_function(
prm1,
prm2,
prm3);
Is it possible with gnu indent? Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
从
indent
手册页:From the
indent
man page:您可以在 Eclipse CDT IDE 中执行此操作,据我所知,它们使用自己的缩进引擎。
You can do this in Eclipse CDT IDE, they use their own indentation engine afaik.