提问人:ilya1725 提问时间:11/9/2023 更新时间:11/9/2023 访问量:29
clang-format 样式文件路径格式不起作用
clang-format style file path format is not working
问:
我用的是 15。根据文档,可以使用以下选项指定自定义样式文件。clang-format
--style
--style='file:<format_file_path>
但是,我在实际路径规范方面遇到了问题,不会产生错误。如果格式化文件是本地的,如下所示,则一切正常:Invalid value for -style
clang-format --dry-run --fcolor-diagnostics --verbose --style='file:cmt.txt' -Werror ./template.h
但是,如果它位于其他地方,则没有任何效果。我尝试了这些可能性:
clang-format --dry-run --fcolor-diagnostics --verbose --style='file:/cmt.txt' -Werror ./template.h
clang-format --dry-run --fcolor-diagnostics --verbose --style="file:/cmt.txt" -Werror ./template.h
clang-format --dry-run --fcolor-diagnostics --verbose --style=file://cmt.txt -Werror ./template.h
clang-format --dry-run --fcolor-diagnostics --verbose --style=file:\/cmt.txt -Werror ./template.h
有没有一些特殊的字符组合可以接受?
我在 msys2 中使用 bash 5.2.15。clang-format
答: 暂无答案
评论
clang-format
which clang-format
C:\cmt.txt
$ which clang-format
/mingw64/opt/llvm-15/bin/clang-format