VSCode and clang-format: 使用我自己的文件扩展名

VSCode and clang-format: use my own file extension

我使用 Visual Studio 带有 clang-format 扩展名的代码来格式化 .c 源代码文件 - 它有效。

现在我有特殊的文件(也有 C 风格的),但是这些文件的格式无法识别,因为它们有另一个文件扩展名 (.kki)。

如何在 Visual Studio 代码中配置 clang 格式扩展,以将我的 .kki 文件识别为 C 源代码文件?

检查您是否可以关注“Adding a file extension to a language”部分:

You can add new file extensions to an existing language with the files.associations setting.

For example, the setting below adds the .myphp file extension to the php language identifier:

"files.associations": {
    "*.myphp": "php"
}

IntelliSense (Ctrl+Space) will show you the available language identifiers.

你的情况:

"files.associations": {
    "*.kki": "c"
}