9 writes to InsertSpaces
Microsoft.CodeAnalysis.LanguageServer.Protocol (1)
Protocol\Converters\FormattingOptionsConverter.cs (1)
59
InsertSpaces
= insertSpaces ?? ThrowMissingRequiredProperty<bool>(nameof(insertSpaces)),
Microsoft.CodeAnalysis.LanguageServer.Protocol.UnitTests (8)
Formatting\FormatDocumentOnTypeTests.cs (1)
195
InsertSpaces
= insertSpaces,
Formatting\FormatDocumentRangeTests.cs (1)
105
InsertSpaces
= insertSpaces,
Formatting\FormatDocumentTests.cs (1)
324
InsertSpaces
= insertSpaces,
InlineCompletions\InlineCompletionsTests.cs (4)
75
""", mutatingLspWorkspace, options: new LSP.FormattingOptions { TabSize = 1,
InsertSpaces
= true });
225
var result = await GetInlineCompletionsAsync(testLspServer, locationTyped, new LSP.FormattingOptions {
InsertSpaces
= true, TabSize = 4 });
231
result = await GetInlineCompletionsAsync(testLspServer, locationTyped, new LSP.FormattingOptions {
InsertSpaces
= true, TabSize = 4 });
245
var result = await GetInlineCompletionsAsync(testLspServer, locationTyped, options ?? new LSP.FormattingOptions {
InsertSpaces
= true, TabSize = 4 });
OnAutoInsert\AbstractOnAutoInsertTests.cs (1)
107
InsertSpaces
= insertSpaces,
2 references to InsertSpaces
Microsoft.CodeAnalysis.LanguageServer.Protocol (2)
Extensions\ProtocolConversions.cs (1)
943
UseTabs = !options.
InsertSpaces
,
Protocol\Converters\FormattingOptionsConverter.cs (1)
119
writer.WriteBoolean("insertSpaces", value.
InsertSpaces
);