VSCode和clang格式:使用我自己的文件扩展名

时间:2018-06-21 20:55:57

标签: visual-studio-code clang-format

我使用clang格式扩展名的Visual Studio Code来格式化.c源代码文件-它可以工作。

现在我有特殊文件(也为C样式),但是由于文件具有另一个文件扩展名(.kki),因此无法识别格式。

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

1 个答案:

答案 0 :(得分:2)

检查是否可以遵循“ Adding a file extension to a language”部分:

  

您可以使用 files.associations 设置将新的文件扩展名添加到现有语言中。

     

例如,以下设置将.myphp文件扩展名添加到php语言标识符:

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

IntelliSense(Ctrl + Space)将为您显示可用的语言标识符。

https://code.visualstudio.com/assets/docs/languages/overview/language-id-intellisense.png

在您的情况下:

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