We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 404b0ae commit ebb6f03Copy full SHA for ebb6f03
src/PowerShellEditorServices.Protocol/LanguageServer/Formatting.cs
@@ -40,7 +40,7 @@ public class DocumentRangeFormattingParams
40
/// <summary>
41
/// The format options.
42
/// </summary>
43
- public FormattingOptions options { get; set; }
+ public FormattingOptions Options { get; set; }
44
}
45
46
public class DocumentOnTypeFormattingParams
src/PowerShellEditorServices.Protocol/Server/LanguageServer.cs
@@ -1180,7 +1180,7 @@ protected async Task HandleDocumentRangeFormattingRequest(
1180
{
1181
var result = await Format(
1182
formattingParams.TextDocument.Uri,
1183
- formattingParams.options,
+ formattingParams.Options,
1184
formattingParams.Range);
1185
1186
await requestContext.SendResult(new TextEdit[1]
0 commit comments