vscode 的 c/C++插件会调整代码 include 的头文件顺序,怎么关闭

查看 62|回复 3
作者:proxytoworld   
如题,假如我 include 了如下顺序的文件
#include[b]
#include
因为 a 比 b 小,所以在保存代码的时候,自动 format ,会变成如下顺序
#include
#include[b]
有的时候因为头文件包含顺序,会导致重复定义等问题,怎么关闭这个功能啊,在设置里面没找到,谷歌也没类似的
0o0O0o0O0o   
关闭什么功能?
> 在保存代码的时候,自动 format
"editor.formatOnSave": false
> 调整代码 include 的头文件顺序
https://stackoverflow.com/questions/64392293/c-clang-formatter-how-to-avoid-rearranging-sorting-include-blocks-at-all
https://stackoverflow.com/questions/60334299/clang-format-disable-ordering-includes
proxytoworld
OP
  
@0o0O0o0O0o 保留 format ,关闭调整头文件顺序的功能,但我不确定有没有这样的开关
proxytoworld
OP
  
看起来应该可以
@0o0O0o0O0o
您需要登录后才可以回帖 登录 | 立即注册

返回顶部