禁用代码部分中的重新共享换行符?

时间:2019-03-06 10:46:31

标签: resharper

使用检查,我可以轻松禁用和恢复重新共享格式设置。例如这样的

// ReSharper disable SuggestVarOrType_BuiltInTypes
int i = 1;
// ReSharper restore SuggestVarOrType_BuiltInTypes

所以..有什么办法可以做到换行,以便我可以在代码的特殊位置放置长行,而仍然使其他人保持平衡吗?

基本上,我想我要求用密码代替上面的“ SuggestVarOrType_BuiltInTypes”:-)

1 个答案:

答案 0 :(得分:1)

尝试使用以下注释:

    // @formatter:wrap_lines False
    {the code block for which you would like to disable wrapping long lines}
    // @formatter:wrap_lines restore

顺便说一句,您可以使用以下方式自行查找大多数格式化程序注释: select needed code block | hit the Alt+Enter shortcut | hit the "Right arrow" key on the "Format selection" item in the menu to open a submenu | hit "Configure"->它将打开新窗口,其中显示了所有影响代码块的格式化程序设置。

enter image description here

然后,欢迎您更改所需的所有设置,然后单击Save as comments按钮->您将获得所需的所有内容,作为围绕代码块的注释。