提交 73616074 编写于 作者: S Sean G. Wright 提交者: Sean Wright

Fix CSharpFormattingOptions csharp_space_around_binary_operators key

Fixes issue #20355?

Is there something special about this bug or am I missing something? There's just an extra space that needs removed, right?
上级 365aa305
......@@ -123,7 +123,7 @@ public static partial class CSharpFormattingOptions
public static Option<BinaryOperatorSpacingOptions> SpacingAroundBinaryOperator { get; } = new Option<BinaryOperatorSpacingOptions>(nameof(CSharpFormattingOptions), nameof(SpacingAroundBinaryOperator), defaultValue: BinaryOperatorSpacingOptions.Single,
storageLocations: new OptionStorageLocation[] {
new EditorConfigStorageLocation<BinaryOperatorSpacingOptions>("csharp_space_around_binary_operators ", s => ParseEditorConfigSpacingAroundBinaryOperator(s)),
new EditorConfigStorageLocation<BinaryOperatorSpacingOptions>("csharp_space_around_binary_operators", s => ParseEditorConfigSpacingAroundBinaryOperator(s)),
new RoamingProfileStorageLocation("TextEditor.CSharp.Specific.SpacingAroundBinaryOperator")});
public static Option<bool> IndentBraces { get; } = new Option<bool>(nameof(CSharpFormattingOptions), nameof(IndentBraces), defaultValue: false,
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册