3 implementations of SupportsFormatOnPaste
Microsoft.CodeAnalysis.CSharp.EditorFeatures (1)
Formatting\CSharpFormattingInteractionService.cs (1)
41public bool SupportsFormatOnPaste => true;
Microsoft.CodeAnalysis.EditorFeatures (1)
ExternalAccess\VSTypeScript\VSTypeScriptFormattingInteractionService.cs (1)
33public 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)
77if (formattingService == null || !formattingService.SupportsFormatOnPaste)