代码格式化程序在包含 :: 的行周围放置空格 - 如何关闭
Builder C++ 的代码格式化程序执行以下操作
之前:
{
std::string Name;
short NumMeterChans;
eChannelGroups Type;
std::vector<short>Index;
}
之后:
{
std::string Name;
short NumMeterChans;
eChannelGroups Type;
std::vector<short>Index;
}
什么标志将其关闭,我尝试了我能想到的一切。 (该标志有什么副作用?)
C++Builder XE
The code formatter for Builder C++ does the following
before:
{
std::string Name;
short NumMeterChans;
eChannelGroups Type;
std::vector<short>Index;
}
after:
{
std::string Name;
short NumMeterChans;
eChannelGroups Type;
std::vector<short>Index;
}
What flag turns that off, I tried everything I could think of. (and what side effects does that flag have?)
C++Builder XE
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
格式化程序设置存储在配置文件中。尝试保存您的配置并将其与默认配置之一进行比较,您也许能够找出您所做的更改导致了该行为。您可以在 RAD Studio XE 中加载配置文件并使用内置比较工具(编辑 > 比较)。
在工具>选项>格式化程序>配置文件和状态页面。保存您当前的配置文件(将其命名为 Formatter_gbrandt.config)。
配置文件位于:
我已使用 Formatter_Wide.config 来格式化您的示例,但我没有看到您所看到的效果。
The formatter settings are stored in config files. Try saving your configuration and comparing it to one of the default configurations and you may be able to figure out what you've changed to cause that behavior. You can load the config files in RAD Studio XE and use the built-in Compare tool (Edit > Compare).
On the Tools > Options > Formatter > Profiles and Status page. Save your current profile (call it Formatter_gbrandt.config).
The config files are located in:
I have used Formatter_Wide.config to format your sample and I do not see the effect you are seeing.