gpt4 book ai didi

c++ - "{ }"的 Visual Studio 代码格式

转载 作者:IT老高 更新时间:2023-10-28 12:55:43 26 4
gpt4 key购买 nike

我在 Ubuntu 上。 Visual Studio Code 中的 C++ 自动 lints 像

if (condition == true)
{
DoStuff();
}

相反,我想做:

if (condition == true) {
DoStuff();
}

我该怎么做?

我已经从市场安装了 C/C++ 扩展。

最佳答案

基于@Chris Drew 的回答

  1. 转到首选项 -> 设置
  2. 搜索 C_Cpp.clang_format_fallbackStyle
  3. 点击编辑,复制到设置
  4. 从“Visual Studio”更改为 "{ BasedOnStyle: Google, IndentWidth: 4 }"

例如

  • "C_Cpp.clang_format_fallbackStyle": "{ BasedOnStyle: Google, IndentWidth: 4, ColumnLimit: 0}"
  • btw ColumnLimit: 0 也很有帮助,因为 google 限制会在您不需要时将您的代码中断到下一行。

如果你想要更多:

更多细节:

英语:https://medium.com/@zamhuang/vscode-how-to-customize-c-s-coding-style-in-vscode-ad16d87e93bf

台湾:https://medium.com/@zamhuang/vscode-%E5%A6%82%E4%BD%95%E5%9C%A8-vscode-%E4%B8%8A%E8%87%AA%E5%AE%9A%E7%BE%A9-c-%E7%9A%84-coding-style-c8eb199c57ce

关于c++ - "{ }"的 Visual Studio 代码格式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45823734/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com