cpp_properties.json 在 vscode 中每分钟恢复默认值[重复]

问题描述 投票:0回答:1

我在包含路径中添加了一些路径,它们工作正常,但突然 json 文件恢复为默认值:

{
  "configurations": [
    {
      "name": "windows-gcc-x64",
      "includePath": [
        "${workspaceFolder}/**"
      ],
      "compilerPath": "C:/msys64/mingw64/bin/gcc.exe",
      "cStandard": "${default}",
      "cppStandard": "${default}",
      "intelliSenseMode": "windows-gcc-x64",
      "compilerArgs": [
        ""
      ]
    }
  ],
  "version": 4
}

我已经添加回路径并保存了它,但一分钟后它又恢复为默认值。

我找到了这个答案:https://github.com/microsoft/vscode-cpptools/pull/5368/files

但是我在计算机上的扩展文件夹中找不到configuration.ts。

还有其他解决办法吗?

c++ c visual-studio-code configuration vscode-extensions
1个回答
0
投票

如果你安装了 Prettier,卸载/停用它,我也会遇到同样的错误。 为我工作

© www.soinside.com 2019 - 2024. All rights reserved.