代码之家  ›  专栏  ›  技术社区  ›  code_fodder

你能把clang格式指向子目录中的.clang格式文件吗?

  •  1
  • code_fodder  · 技术社区  · 3 年前

    我无法理解clang格式手册中的以下文本:

    .clang-format file located in one of the parent
    directories of the source file (or current
    directory for stdin).
    

    “stdin的当前目录”是什么意思?它是当前目录还是stdin?

    是否可以通过完整路径指定.clang格式的位置?

    0 回复  |  直到 7 年前
        1
  •  8
  •   Yoonian    7 年前

    它是当前目录。 而且没有办法设置 .clang-format 路径 clang-format 仅从目录进行扫描,直到遇到文件为止。

        2
  •  0
  •   boris blokland    5 年前

    关于VSCode,我发现了此功能请求: https://github.com/microsoft/vscode-cpptools/issues/3675

    因此,目前不支持通过完整路径指定.clang格式的位置。