代码格式化程序在包含 :: 的行周围放置空格 - 如何关闭

发布于 2024-10-10 21:57:23 字数 475 浏览 4 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

稳稳的幸福 2024-10-17 21:57:23

格式化程序设置存储在配置文件中。尝试保存您的配置并将其与默认配置之一进行比较,您也许能够找出您所做的更改导致了该行为。您可以在 RAD Studio XE 中加载配置文件并使用内置比较工具(编辑 > 比较)。

在工具>选项>格式化程序>配置文件和状态页面。保存您当前的配置文件(将其命名为 Formatter_gbrandt.config)。

配置文件位于:

C:\Documents and Settings\<User>\Application Data\Embarcadero\BDS\8.0

我已使用 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:

C:\Documents and Settings\<User>\Application Data\Embarcadero\BDS\8.0

I have used Formatter_Wide.config to format your sample and I do not see the effect you are seeing.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文