vscode 提示有两种clang-format
时间: 2023-09-27 11:09:11 浏览: 135
这可能是因为您已经安装了多个版本的clang-format或者多个扩展提供了clang-format支持。您可以通过在终端中运行以下命令来查看已安装的clang-format版本:
```
clang-format --version
```
如果您想使用某个特定版本的clang-format,您可以在VS Code中使用"clang-format.executable"设置来指定它的路径。例如,在您的VS Code设置中,添加以下行:
```
"clang-format.executable": "/path/to/clang-format"
```
这里"/path/to/clang-format"应该替换为您想使用的clang-format可执行文件的实际路径。
阅读全文