如何将Resharper设置为仅用一个选项卡缩进包装线?

Fox*_*ven 9 c# resharper indentation word-wrap

如何将Resharper设置为缩进包装的C#行,只包含一个选项卡,用于包围的行(当然第一行除外)?

如果我将连续线缩进倍数设置为零,我得到这个:

This is a really long 
statement that wraps around
and takes up three lines of code;
Run Code Online (Sandbox Code Playgroud)

如果我将连续线缩进倍数设置为1,我会得到这个阶梯效果:

This is a really long
    statement that wraps around
        and takes up three lines of code;
Run Code Online (Sandbox Code Playgroud)

我真正想要的是这个(普通的旧悬挂式缩进样式):

This is a really long
    statement that wraps around
    and takes up three lines of code;
Run Code Online (Sandbox Code Playgroud)

Dmitry Osinovskiy 在这里暗示Resharper 8可能能够做到这一点,但我有8.0.2,我仍然没有办法做到这一点.