问题标签 [astyle]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
c++ - 如何使用 astyle 减少 C++ 代码中关键字之间的冗余空格
我总是在关键字之间或标识符之间输入更多空格而没有意识到。如何配置样式配置文件以自动将它们减少到一个空格?例如:
会成为:
codeblocks - Changing all my indents to 3 spaces. Code::Blocks
I have to submit an assignment and they want all the indents to be 3 spaces. I don't know how to change the settings of Astyle.dll so that it will change them 3 spaces instead of the default 4. Any ideas?
Also, Astyle seems to like having no indent between switch() and its cases, and I need there to be an indent there. Any ideas?
c++ - AStyle for Google C++ 风格指南
我刚开始将 Astyle 与 VS-2013 一起用于 C++。我想将其配置为遵循Google C++ style guide。我注意到 Astyle 允许导入配置文件,所以我想知道是否有人完成了艰苦的工作并将其配置为遵循 Google C++ 样式指南?如果没有,那么我应该在“设置”窗口中进行哪些调整:
有任何想法吗?
c++ - 构造函数中变量init的Astyle C++缩进
我正在寻找一个 Astyle 选项来缩进 C++ 构造函数:
至 :
我在文档和谷歌上都没有找到。谢谢。
c++ - Dev-C++ IDE 中的自动格式化功能
在 Eclipse 中,我总是使用Ctrl + shift + f
IDE 中的代码自动格式化。
Dev-C++中是否有类似的功能,或者我可以使用某些插件来格式化我的 C/C++ 代码?
astyle - astyle:使用“--exclude”选项排除文件和目录的问题
我最近遇到了一个我一直无法弄清楚的 astyle 使用问题。我不确定这是否是一个错误,或者我只是错误地使用了 astyle 工具。我正在尝试使用“--exclude”选项从处理中省略文件和目录,但继续得到“不匹配”的排除错误并且 astyle 终止:
当我通过“-i”(忽略排除错误)时,astyle 按预期处理文件。因此,“排除”语句似乎有问题。
这是一个错误吗?我是否错误地使用了astyle?任何帮助,将不胜感激。
astyle - 文件夹中所有文档的 Astyle 格式,并且不创建备份文件
我刚开始使用astyle。
- 是否可以对文件夹中的所有文件运行 astyle ?
- 如果文件夹中有不同格式的文件,是否可以明智地单独选择 C/C++ 文件进行格式化?
- 是否可以将 astyle 链接到 gedit 以便从现在开始编写的程序是格式的?
- 格式化后是否可以不创建 file.cpp.orig 备份文件?
谢谢!
svn - 自动缩进代码而不弄乱svn中更改的跟踪
我需要在具有多个源文件的项目中运行 astyle。不是所有开发人员都使用通用的 IDE,他们使用 vi、gedit、Netbeans、Eclipse 等进行开发。所以我不能使用配置文件进行缩进。为了在代码缩进中保持标准,我想运行一个脚本(可能在服务器中),该脚本每天为每个源文件执行 astyle 并提交更改。但我担心我会忘记谁对代码进行了最后一次更改。
我可以配置 svn 以保留在执行 astyle 之前进行更改的人员的信息吗?
谢谢。
c++ - Astyle C++ 枚举类缩进
有没有办法让 Astyle 将枚举类元素缩进到相同的深度?
我得到以下信息:
而我想要类似的东西:
大枚举向右缩进太远。
当前选项为 kr 样式,选项:SLC N。
c - 带有 --remove-brackets 和宏的 Astyle
使用代码:
Astyle 将删除宏调用周围的括号
幸运的是,我找到了解决方案。如果我把;
宏放在里面,Astyle 就会明白。
这是一个好的解决方案,是Astyle的错误还是我的误解?