3 implementations of SupportsFormatOnPaste
Microsoft.CodeAnalysis.CSharp.EditorFeatures (1)
Formatting\CSharpFormattingInteractionService.cs (1)
39public bool SupportsFormatOnPaste => true;
Microsoft.CodeAnalysis.EditorFeatures (1)
ExternalAccess\VSTypeScript\VSTypeScriptFormattingInteractionService.cs (1)
27public bool SupportsFormatOnPaste => _implementation.SupportsFormatOnPaste;
Microsoft.CodeAnalysis.ExternalAccess.FSharp (1)
Internal\Editor\FSharpEditorFormattingService.cs (1)
40public bool SupportsFormatOnPaste => _service.SupportsFormatOnPaste;
1 reference to SupportsFormatOnPaste
Microsoft.CodeAnalysis.EditorFeatures (1)
Formatting\FormatCommandHandler.Paste.cs (1)
72if (formattingService == null || !formattingService.SupportsFormatOnPaste)