1 write to Character
Microsoft.CodeAnalysis.LanguageServer.Protocol.UnitTests (1)
Formatting\FormatDocumentOnTypeTests.cs (1)
191Character = characterTyped,
6 references to Character
Microsoft.CodeAnalysis.LanguageServer.Protocol (4)
Handler\Formatting\FormatDocumentOnTypeHandler.cs (3)
49if (string.IsNullOrEmpty(request.Character)) 70if (text[position - 1] != request.Character[0]) 84if (!formattingService.ShouldFormatOnTypedCharacter(documentSyntax, request.Character[0], position, cancellationToken))
Protocol\DocumentOnTypeFormattingParams.cs (1)
28/// by the <see cref="Character"/> property got typed.
Microsoft.VisualStudio.LanguageServices.Xaml (2)
Implementation\LanguageServer\Handler\Formatting\FormatDocumentOnTypeHandler.cs (2)
36if (string.IsNullOrEmpty(request.Character)) 48var textChanges = await formattingService.GetFormattingChangesAsync(document, options, request.Character[0], position, cancellationToken).ConfigureAwait(false);