8 references to IFormattingInteractionService
Microsoft.CodeAnalysis.EditorFeatures (8)
ExternalAccess\VSTypeScript\VSTypeScriptFormattingInteractionService.cs (2)
18[ExportLanguageService(typeof(IFormattingInteractionService), InternalLanguageNames.TypeScript), Shared] 21internal sealed class VSTypeScriptFormattingInteractionService(IVSTypeScriptFormattingInteractionService implementation) : IFormattingInteractionService
Formatting\FormatCommandHandler.cs (2)
58var formattingService = document.GetRequiredLanguageService<IFormattingInteractionService>(); 136var service = document.GetLanguageService<IFormattingInteractionService>();
Formatting\FormatCommandHandler.FormatDocument.cs (1)
30var formattingService = document.GetLanguageService<IFormattingInteractionService>();
Formatting\FormatCommandHandler.FormatSelection.cs (1)
36var formattingService = document.GetLanguageService<IFormattingInteractionService>();
Formatting\FormatCommandHandler.Paste.cs (1)
73var formattingService = document.GetLanguageService<IFormattingInteractionService>();
IntelliSense\AsyncCompletion\CommitManager.cs (1)
315var formattingService = currentDocument?.GetRequiredLanguageService<IFormattingInteractionService>();