C++-使用clang-format格式化代码

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。

参考链接:

  1. https://clang.llvm.org/docs/ClangFormatStyleOptions.html
  2. https://blog.csdn.net/xuyouqiang1987/article/details/128410408
相关推荐
我不会编程55512 小时前
Python Cookbook-5.1 对字典排序
开发语言·数据结构·python
李少兄12 小时前
Unirest:优雅的Java HTTP客户端库
java·开发语言·http
CoderIsArt12 小时前
QT中已知4个坐标位置求倾斜平面与倾斜角度
qt·平面
懒羊羊大王&12 小时前
模版进阶(沉淀中)
c++
无名之逆12 小时前
Rust 开发提效神器:lombok-macros 宏库
服务器·开发语言·前端·数据库·后端·python·rust
似水এ᭄往昔12 小时前
【C语言】文件操作
c语言·开发语言
啊喜拔牙12 小时前
1. hadoop 集群的常用命令
java·大数据·开发语言·python·scala
owde13 小时前
顺序容器 -list双向链表
数据结构·c++·链表·list
xixixin_13 小时前
为什么 js 对象中引用本地图片需要写 require 或 import
开发语言·前端·javascript
GalaxyPokemon13 小时前
Muduo网络库实现 [九] - EventLoopThread模块
linux·服务器·c++