gpt4 book ai didi

c++ - 如何停止 Visual Studio 2013 自动重新格式化

转载 作者:行者123 更新时间:2023-11-28 05:07:18 26 4
gpt4 key购买 nike

如何阻止在 VS2013 中发生以下情况?它不会在 VS2008 中发生——可能从 VS2010 开始。我输入

int GetCount() const { return count

一切正常。当我输入;它变成了

int GetCount() const {
return count;

当我输入 } 时,它变成了

int GetCount() const {
return count;
}

我真正想要的是

int GetCount() const { return count; }

如果我不输入 ;然后返回并插入它,它的行为就像我希望的那样,只是我必须记住返回并插入 ;

我查看了工具 -> 选项 -> 文本编辑器 -> C/C++。我没有尝试过所有选项,但根据描述,我无法弄清楚什么可以阻止这种行为。

最佳答案

这些选项在

Text Editor >> C/C++ >> Formatting >> General

你要的是

Automatically format statement when I type a ;

enter image description here

当您按 ; 时应用的特定格式设置是在格式 >> 新行中设置的。

关于c++ - 如何停止 Visual Studio 2013 自动重新格式化,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44389351/

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