MacOs版本
-
下载clang-format
#下载clang-format插件 brew install install clang-format
-
配置external tool
不同方式下载的 clang-format地址会有不同,可以用以下方法查找
which clang-format ## /opt/homebrew/bin/clang-format 则将这个配置到program
-
开启clang-format(Preferences -> Editor -> Code Style -> “Enable ClangFormat”)
-
开启自动格式化(Preferences -> Tools -> Actions on Save -> Reformat code)
也可以在c*文件里面通过右键选择
external tools
->clang format
来手动格式化代码