clang-format既是一个库,也是一个单独的工具,它可以自动格式化代码。下面我们介绍如何在QtCreator中使用clang-format。
点击帮助->关于插件,勾选Beautifier
重启后,点击工具->选项->Beautifier->Clang Format,选择使用File定义风格
windows下,在.pro目录下创建.clang-format文件,linux下,在用户目录创建.clang-format文件。
我的格式化配置如下
BasedOnStyle: Google
IndentWidth: 4
AccessModifierOffset: -4
BreakBeforeBraces: Custom
BraceWrapping:
AfterFunction: true
ColumnLimit: 120
AllowShortIfStatementsOnASingleLine: Never
AllowShortLambdasOnASingleLine: Empty
关于clang-format配置项有哪些以及含义都在参考链接1中,这里不再赘述。
general中可以选择保存时格式化,另外还可以添加格式化快捷键。
在使用windows qtcreator时,我这里默认使用clang-format.bat,并且报错
Error in text formatting: Could not format file xxxxx
我的解决方法是在https://github.com/llvm/llvm-project/releases下载LLVM-16.0.5-win64.exe
,解压后在bin下找到clang-format.exe,修改Clang Format command为exe。
文章来源:https://www.toymoban.com/news/detail-635332.html
参考链接:文章来源地址https://www.toymoban.com/news/detail-635332.html
- https://clang.llvm.org/docs/ClangFormatStyleOptions.html
- https://blog.csdn.net/xuyouqiang1987/article/details/128410408
到了这里,关于C++-使用clang-format格式化代码的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!